void logCall(const std:string &funcName);
class Customer {
public:
Customer(const Customer & rhs);
Customer& operator =(const Customer &rhs);
private:
std:string name;
}
copying 函数确保复制对象内所有成员变量和所有base class成分。
不要尝试以某个copying函数实现另一个copying 函数,应该将共同技能放进第三个函数,两个copying函数共同调用。
effective C++ 条款12 复制对象的时候勿忘其每一个成分
原文:https://www.cnblogs.com/xiuxiu55/p/13722019.html