首页 > 其他 > 详细

(五)noncopyable禁止拷贝类

时间:2018-06-11 00:04:20      阅读:166      评论:0      收藏:0      [点我收藏+]

1. noncopyable类和copyable类

/*
 * noncopyable.h
 *
 *  Created on: 2018-6-10
 *      Author: 
 */

#ifndef NONCOPYABLE_H_
#define NONCOPYABLE_H_

namespace ld{

class noncopyable
{
public:
    noncopyable() {}
    ~noncopyable() {}

private:  // emphasize the following members are private
    noncopyable( const noncopyable& );
    noncopyable& operator=( const noncopyable& );
};


class copyable  // emphasize the class is copyalbe
{

};

} // end of namespace ld

#endif /* NONCOPYABLE_H_ */

2. test

#include <iostream>
#include "noncopyable.h"

class A : public ld::noncopyable
{
public:
    int a=1;
};

class B : public ld::copyable
{
public:
    int b=3;
};

int main()
{
    std::cout<<"test noncopyable"<<std::endl;
    A a;
    // A a_copy = a;  // 编译失败
    B b;
    B b_copy = b;
    std::cout<<a.a/*<<a_copy.a*/<<b.b<<b_copy.b<<std::endl;
}

(五)noncopyable禁止拷贝类

原文:https://www.cnblogs.com/walkinginthesun/p/9164999.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!