博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++如何禁止掉对象的复制操作
阅读量:6758 次
发布时间:2019-06-26

本文共 1131 字,大约阅读时间需要 3 分钟。

那么好了我们可以特性一起使用,boost::noncopyable

[cpp] 
  
  1. #ifndef BOOST_NONCOPYABLE_HPP_INCLUDED    
  2. #define BOOST_NONCOPYABLE_HPP_INCLUDED    
  3.     
  4. namespace boost {    
  5.     
  6. //  Private copy constructor and copy assignment ensure classes derived from    
  7. //  class noncopyable cannot be copied.    
  8.     
  9. //  Contributed by Dave Abrahams    
  10.     
  11. namespace noncopyable_  // protection from unintended ADL    
  12. {    
  13.   class noncopyable    
  14.   {    
  15.    protected:    
  16.       noncopyable() {}    
  17.       ~noncopyable() {}    
  18.    private:  // emphasize the following members are private    
  19.       noncopyable( const noncopyable& );    
  20.       const noncopyable& operator=( const noncopyable& );    
  21.   };    
  22. }    
  23.     
  24. typedef noncopyable_::noncopyable noncopyable;    
  25.     
  26. // namespace boost    
  27.     
  28. #endif  // BOOST_NONCOPYABLE_HPP_INCLUDED    

为了禁止拷贝对象,我们只需要让其私有继承自boost::noncopyable,

class student:private boost::noncopyable

{

......

}

当调用到派生类的拷贝构造函数或赋值函数进行复制时,不可避免的要调用基类对应的函数,因为这些操作是private,这样的操作会被编译器拒绝。

需要注意,多重继承有时会使空基类noncopyable优化失效,所以这不适合用于多重继承的情形。

另外,如果只是不想要使用默认的拷贝构造函数或赋值函数,可以使用11提供的delete,

class MyClass

{
  public:
    MyClass()=default;
    MyClass(const MyClass& )=delete;
  ......
}

当然,一旦函数被delete过了,那么重载该函数也是非法的,该函数我们习惯上称为删除函数。

本文转自莫水千流博客园博客,原文链接:http://www.cnblogs.com/zhoug2020/p/6591736.html,如需转载请自行联系原作者

你可能感兴趣的文章
「小程序JAVA实战」小程序开发注册用户的接口(33)
查看>>
C#键盘事件处理父窗体子窗体
查看>>
实验六
查看>>
《现代操作系统》学习笔记之存储管理之地址空间
查看>>
ASP.NET MVC2 in Action 读书笔记 [3]
查看>>
报表数据填报中的自动计算
查看>>
online_judge_1105
查看>>
复制功能的实现
查看>>
Remove Element
查看>>
ES6 Promise 用法讲解
查看>>
20180320作业1:源代码管理工具调查——15100216
查看>>
输出空心菱形
查看>>
StringBuilder类为何比string的简单拼接效率高
查看>>
仿百度搜索框自动下拉提示
查看>>
某封包地址分析
查看>>
渗透测试
查看>>
第七节
查看>>
获取和设置WebBrowser内核IE版本
查看>>
我的第一个博客,开始记录点滴生活
查看>>
用C#sqlserver实现增删改查
查看>>