zoukankan      html  css  js  c++  java
  • *** C++的空类默认会产生哪些类成员函数

    class EMPTY
    {
    public:
        EMPTY(); //默认构造函数
        EMPTY(const EMPTY &); //复制构造函数
        ~EMPTY();//默认析构函数
        EMPTY & operator=(const EMTPY &); //赋值运算符
        EMPTY * operator&();  //取址运算符
        const EMPTY * operator&() const; //取址运算符 const
    };
  • 相关阅读:
    2.6
    zuoye
    练习1
    练习
    练习
    4
    3
    2
    1
    1.3
  • 原文地址:https://www.cnblogs.com/superrunner/p/10165146.html
Copyright © 2011-2022 走看看