关于c++拷贝构造函数
摘要:
#include using namespace std;class Test{public : Test(){ cout << "Hello world !" << endl; } } ;int main(){ Test a; Test b=a; return 0; }输出只有一个 Hello world !第一个Test t;自动调用构造函数 Test();,而Test t1=t;则是用t初始化t1 ,调用的是Test的默认拷贝构造函数,所以不会输出hello world。http://q.cnblog... 阅读全文
posted @ 2013-10-03 10:11 我勒个去~ 阅读(50) 评论(0) 推荐(0) 编辑