C++ 概念: PODType
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
指定的类型是POD(普通旧数据)的类型。这意味着该类型是在C编程语言中使用的类型兼容,使用C库函数可以被操纵:它可以创建std::malloc,它可以被复制与std::memmove等,并可以交换C库直接,其二进制形式.
原文:
Specifies that the type is POD (Plain Old Data) type. This means the type is compatible with the types used in the C programming language, can be manipulated using C library functions: it can be created with std::malloc, it can be copied with std::memmove, etc, and can be exchanged with C libraries directly, in its binary form.
注意,该标准没有定义或概念,这个名字的命名要求。这是一种由核心语言定义的类别。作为唯一的一致性的概念,它包括在这里.
原文:
Note, that the standard doesn't define a named requirement or concept with this name. This is a type category defined by the core language. It is included here as concept only for consistency.
[编辑] 需求NJ
无论是
或者一个类类型(class或struct或union)
原文:
Or a class type (class or struct or union) that is
- an
AggregateType
- 有没有非静态成员,非POD原文:has no non-static members that are non-POD
- 没有任何成员的引用类型
- 有没有用户自定义拷贝构造函数
- 有没有用户定义的析构函数
或这种类型的数组
[编辑] 需求NJ
无论是
或者一个类类型(class或struct或union)
原文:
Or a class type (class or struct or union) that is
-
TrivialType
-
StandardLayoutType
- 有没有非静态成员,非POD原文:has no non-static members that are non-POD
或这种类型的数组
[编辑] 另请参阅
(C++11) |
检查是否是传统C数据结构(POD)类型 (类模板) |