构造/赋值/析构函数

  类中3个重要的成员函数,标准形式如下:

class A{
public:
    A();
    A(const A&);
    A& operator=(const A&);
    ~A();
};

  以后会补充

posted @ 2015-06-01 09:51  Sawyer Ford  阅读(159)  评论(0编辑  收藏  举报