... A(const A &a); // 私有的拷贝构造函数 A & operator =(const A &a); // 私有的赋值函数 A b(a); // 调用了私有的拷贝构造函数 ...
基于18个网页-相关网页
私有的拷贝构造函数
Private copy constructor
以上为机器翻译结果,长、整句建议使用 人工翻译 。
清单2显示了产生编译时错误的代码部分,因为该拷贝构造函数是私有的。
Listing 2 shows a piece of code that results in a compile-time error because the copy constructor is private.
youdao
你的第一个解决方案向读者传达,拷贝构造函数是私有的,不能使用。
Your first solution conveys to the reader that the copy-constructor is private and is not to be used.
应用推荐
模块上移
模块下移
不移动