C++ 概念: TriviallyCopyable
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
[编辑] 要求
- 琐碎的拷贝构造函数
- 琐碎的移动构造函数
- 简单拷贝赋值运算符
- 琐碎的举动赋值运算符
- 平凡的析构函数
- No virtual functions or virtual base classes
- All (non-static) members and base classes are TriviallyCopyable
[编辑] 注释
- Other than the other requirements, trivial constructor, assignment and destructor must be defined implicitly (not user-provided)
- Scalar types and arrays of TriviallyCopiable objects are TriviallyCopiable as well
[编辑] 另请参阅
(C++11) |
检查类型是否可以通过简单拷贝内存完成拷贝 (类模板) |