noncopyable禁止拷贝类
Posted walkinginthesun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了noncopyable禁止拷贝类相关的知识,希望对你有一定的参考价值。
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禁止拷贝类的主要内容,如果未能解决你的问题,请参考以下文章
对象拷贝类PropertyUtils,BeanUtils,BeanCopier的技术沉淀
boost实用工具:创建一个禁止复制的类 noncopyable