摘要:
Item11--如果class内动态置有内存,请为此class声明一个copy constructor和一个assignment运算符也就是说,class内有一个指针,使用new来动态申请内存的情况下,默认的copy constructor和assignment运算符是浅拷贝(bitwise copy),也即直接拷贝指针的值,可能会有内存泄露的危险String a("hello");{String... 阅读全文
摘要:
Item11--如果class内动态置有内存,请为此class声明一个copy constructor和一个assignment运算符也就是说,class内有一个指针,使用new来动态申请内存的情况下,默认的copy constructor和assignment运算符是浅拷贝(bitwise copy),也即直接拷贝指针的值,可能会有内存泄露的危险String a("hello");{String... 阅读全文
|