std::is_scalar
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <type_traits> 中定义
|
||
template< class T > struct is_scalar; |
(C++11 起) | |
T
是一个标量类型(即算术类型,枚举类型,指针,指向成员的指针,或std::nullptr_t,包括任何品种合格的变种),提供会员value
等于true。对于任何其他类型,value
是false.原文:
If
T
is a scalar type (that is, arithmetic type, enumeration type, pointer, pointer to member, or std::nullptr_t, including any cv-qualified variants), provides the member constant value
equal true. For any other type, value
is false.目录 |
Inherited from std::integral_constant
Member constants
value [静态的]</div></div>
|
true如果 T is a scalar type ,false其他方式 原文: true if T is a scalar type , false otherwise (公共静态成员常量) |
Member functions
operator bool |
转换的对象bool,返回 value 原文: converts the object to bool, returns value (公共成员函数) |
Member types
类型
|
Definition |
value_type
|
bool
|
type
|
std::integral_constant<bool, value> |
</div>
[编辑] 注释
每个单独的内存位置在C + +的内存模型,包括隐藏的记忆体位置所使用的语言特性(如虚表的指针),标量类型(或者是一个序列的相邻位域的长度非零)。的副作用表达式计算过程中,线程间的同步,并依赖排序的序列都被定义在单独的标量对象.
原文:
Each individual memory location in the C++ memory model, including the hidden memory locations used by language features (e.g virtual table pointer), has scalar type (or is a sequence of adjacent bit-fields of non-zero length). Sequencing of side-effects in expression evaluation, interthread synchronization, and dependency ordering are all defined in terms of individual scalar objects.
[编辑] 可能的实现
template< class T > struct is_scalar : std::integral_constant<bool, std::is_arithmetic<T>::value || std::is_enum<T>::value || std::is_pointer<T>::value || std::is_member_pointer<T>::value || std::is_same<std::nullptr_t, typename std::remove_cv<T>::type>::value> {}; |
[编辑] 示例
输出:
T is scalar T is not a scalar
[编辑] 另请参阅
(C++11) |
检查是不是数字类型 (类模板) |
(C++11) |
检查类型是否是枚举类型 (类模板) |
检查是否是指针类型 (类模板) | |
(C++11) |
检查是否是指向非静态函数或成员的指针类型 (类模板) |