摘要:
拷贝构造函数大家都比较熟悉,通俗讲就是传入一个对象,拷贝一份副本。 不过看似简单的东西,实际不注意的话就会产生问题!#includeusing namespace std;class CExample {public: int a,b,c; char *str;public: //构造函数 CExample(int tb) { a = tb; b = tb+1; c = tb+2; str=(char *)malloc(sizeof(char)*10); strcpy(str,"1234... 阅读全文
posted @ 2013-12-25 16:28 huhuuu 阅读(3496) 评论(3) 推荐(2) 编辑