C++ 概念: CopyConstructible

来自cppreference.com
< cpp‎ | concept

指定的类型的一个实例可以复制构造(复制).
原文:
Specifies that an instance of the type can be copy-constructed (copied).
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
这个概念意味着MoveConstructible.
原文:
This concept implies MoveConstructible.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 要求

该类型必须实现以下功能:1
原文:
The type must implement the following functions:
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

Type::Type

Type::Type( Type& other );

Type::Type( const Type& other );
Type::Type( volatile Type& other );

Type::Type( const volatile Type& other );
(的变种之一就足够了)

拷贝构造函数: constructs an instance of a type with the contents of other. The internal state of other is not modified.

The following expressions must have the specified effects:

表达
原文:
Expression
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
Effects
Type a = v;
a是相当于vrvType是一个实例。 v必须保持不变.
原文:
a is equivalent to v, where rv is an instance of Type. v must be unchanged.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
Type(v);
Type是一个实例vv,相当于一个临时对象类型Typev必须保持不变.
原文:
a temporary object of type Type is equivalent to v, where v is an instance of Type. v must be unchanged.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 另请参阅

检查对象是否声明了拷贝构造函数
(类模板) [edit]