NO.5: 了解C++编译器默认为你生成的构造/赋值/析构

1.编译器可以暗自位class生成default构造,copy构造,copy assigned函数,析构函数;

note1:如果没有自定义构造函数,编译器会为你生成合成默认构造函数.如果有定义则不生成

note2:如果没有定义copy构造和copy assigned函数,编译器也会为你生成合成默认的,注意点:如果成员变量有引用或者const成员,需要自定义copy assigned函数(C++不允许"reference value 改变指向对象,所以编译器拒绝执行合成默认copy assigned函数生成")

note3:如果 base class 中copy assgined函数或构造函数 is private,编译器无法为 derived calss 合成这部分copy assigined/construct,因为无权限

note3:编译器生成的析构函数不具有virtualness属性,除非base class声明virtual destruct,编译器为derived class 生成的destruct函数才具有 virtual 属性;

note4:编译器为你合成的这些default构造,copy构造,copy assigned函数,析构函数,你不调用是不会为你生成的;

 #include <iostream>

 class include_
{
private:
int &b;
public:
include_(int &c) : b(c)
{} }; int main(int argc, char **argv)
{
int a = , b();
include_ A(a);
include_ B(b);
//error:copy assignment operator is implicitly deleted
A=B;
return ;
}
上一篇:c++友元函数友元类


下一篇:解决Visual Studio 2010新建工程时出现『1>LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt』错误