zoukankan      html  css  js  c++  java
  • Effective C++ 笔记 —— Item 9: Never call virtual functions during construction or destruction.

    If Transaction had multiple constructors, each of which had to perform some of the same work, it would be good software engineering to avoid code replication by putting the common initialization code, including the call to logTransaction, into a private nonvirtual initialization function, say, init:

    class Transaction 
    {
    public:
        Transaction()
        {
            init();
        } // call to non-virtual...
        virtual void logTransaction() const = 0;
        //...
    private:
        void init()
        {
            //...
            logTransaction(); // ...that calls a virtual!
        }
    };

    This code is more insidious, because it will typically compile and link without complaint.In this case, because logTransaction is pure virtual in Transaction, most runtime systems will abort the program when the pure virtual is called (typically issuing a message to that effect). However, if logTransaction were a "normal" virtual function (i.e., not pure virtual) with an implementation in Transaction, that version would be called, and the program would merrily trot along, leaving you to figure out why the wrong version of logTransaction was called when a derived class object was created.

    There are different ways to approach this problem. One is to turn logTransaction into a non-virtual function in Transaction, then require that derived class constructors pass the necessary log information to the Transaction constructor. That function can then safely call the nonvirtual logTransaction. Like this:

    class Transaction 
    {
    public:
        explicit Transaction(const std::string& logInfo);
        void logTransaction(const std::string& logInfo) const; // now a non-virtual func
        //...
    };
    Transaction::Transaction(const std::string& logInfo)
    {
        //...
        logTransaction(logInfo); // now a non-virtual call
    } 
    
    class BuyTransaction : public Transaction 
    {
    public:
        BuyTransaction(parameters)
            : Transaction(createLogString(parameters)) // pass log info
        {
            //...
        } // to base class constructor
         // ...
    private:
        static std::string createLogString(parameters);
    };

    Things to Remember

    • Don't call virtual functions during construction or destruction, because such calls will never go to a more derived class than that of the currently executing constructor or destructor.
  • 相关阅读:
    Web---JSP-EL表达式
    JSP---JavaBean的使用-jsp:useBean标签相关
    Web---JSP注册技术的的演绎(3代)-JSP/EJB/Servlet/POJO/JavaBean
    Web---myAjax(自己写底层)-隐藏帧技术
    JSP---JSP中4个容器-pageContext使用
    JSP---演示ErroPage、isErroPage和jsp:forword标签
    JSP-讲解(生成java类、静态导入与动态导入)
    经典算法面试题目-替换字符串的内容(1.5)
    【Android UI】Android Layout XML属性
    【Android UI】:Fragment官方文档
  • 原文地址:https://www.cnblogs.com/zoneofmine/p/15205006.html
Copyright © 2011-2022 走看看