std::has_unique_object_representations
来自 cppreference.com
定义在头文件 <type_traits> 中 |
||
template< class T > struct has_unique_object_representations; |
(自 C++17 起) | |
std::has_unique_object_representations
是一个 UnaryTypeTrait。
如果 T
是 TriviallyCopyable,并且如果类型 T
的任何两个具有相同值的物体具有相同的 对象表示,则提供成员常量 value
等于 true。对于任何其他类型,value
为 false。
为了此特征的目的,如果数组的元素具有相同的数值,则两个数组具有相同的数值,如果两个非联合类别的直接子物体具有相同的数值,则它们具有相同的数值,如果两个联合类别具有相同的活动成员并且该成员的值相同,则它们具有相同的数值。
哪个标量类型满足此特征是实现定义的,但是 unsigned(直到 C++20) 不使用填充位的整数类型保证具有唯一的对象表示。
如果 T
是不完整类型,而不是(可能是 cv 限定的)void 或未知边界的数组,则行为未定义。
如果程序为 std::has_unique_object_representations
或 std::has_unique_object_representations_v
添加了专门化,则行为未定义。
内容 |
[编辑] 模板参数
T | - | 要检查的类型 |
[编辑] 辅助变量模板
template< class T > constexpr bool has_unique_object_representations_v = |
(自 C++17 起) | |
从 std::integral_constant 继承
成员常量
value [静态] |
true 如果 T 具有唯一的对象表示,否则为 false(公共静态成员常量) |
成员函数
operator bool |
将对象转换为 bool,返回 value (公共成员函数) |
operator() (C++14) |
返回 value (公共成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
type
|
std::integral_constant<bool, value> |
[编辑] 注释
此特征的引入是为了能够确定类型是否可以通过将其对象表示作为字节数组进行哈希来正确地进行哈希。
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_has_unique_object_representations |
201606L | (C++17) | std::has_unique_object_representations
|
[编辑] 示例
运行此代码
#include <cstdint> #include <type_traits> struct unpadded { std::uint32_t a, b; }; struct likely_padded { std::uint8_t c; std::uint16_t st; std::uint32_t i; }; int main() { // Every value of a char corresponds to exactly one object representation. static_assert(std::has_unique_object_representations_v<char>); // For IEC 559 floats, assertion passes because the value NaN has // multiple object representations. static_assert(!std::has_unique_object_representations_v<float>); // Should succeed in any sane implementation because unpadded // is typically not padded, and std::uint32_t cannot contain padding bits. static_assert(std::has_unique_object_representations_v<unpadded>); // Fails in most implementations because padding bits are inserted // between the data members c and st for the purpose of aligning st to 16 bits. static_assert(!std::has_unique_object_representations_v<likely_padded>); // Notable architectural divergence: static_assert(std::has_unique_object_representations_v<bool>); // x86 // static_assert(!std::has_unique_object_representations_v<bool>); // ARM }
[编辑] 另请参阅
(C++11) |
检查类型是否是 标准布局 类型 (类模板) |
(C++11) |
哈希函数对象 (类模板) |