別拿淺拷貝不當拷貝

咱們知道C++中類裏的成員函數中構造函數和拷貝構造都是值拷貝,因此地址也是值拷貝,也就是多個對象用到了一樣的一塊地址,例如:ios #include <iostream> using namespace std; class String { public:     String(char* str)     :_str(new char[strlen(str)+1])     {       
相關文章
相關標籤/搜索