std::is_fundamental
来自 cppreference.com
定义在头文件 <type_traits> 中 |
||
template< class T > struct is_fundamental; |
(自 C++11 起) | |
std::is_fundamental
是一个 UnaryTypeTrait。
如果 T
是一个 基本类型(即算术类型、void 或 nullptr_t),则提供等于 true 的成员常量 value。对于任何其他类型,value 为 false。
如果程序为 std::is_fundamental
或 std::is_fundamental_v
添加了专门化,则行为未定义。
内容 |
[编辑] 模板参数
T | - | 要检查的类型 |
[编辑] 帮助程序变量模板
template< class T > constexpr bool is_fundamental_v = is_fundamental<T>::value; |
(自 C++17 起) | |
从 std::integral_constant 继承
成员常量
value [静态] |
如果 T 是一个基本类型,则为 true,否则为 false(公共静态成员常量) |
成员函数
operator bool |
将对象转换为 bool,返回 value (公共成员函数) |
operator() (C++14) |
返回 value (公共成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
type
|
std::integral_constant<bool, value> |
[编辑] 可能的实现
template<class T> struct is_fundamental : std::integral_constant< bool, std::is_arithmetic<T>::value || std::is_void<T>::value || std::is_same<std::nullptr_t, typename std::remove_cv<T>::type>::value // you can also use 'std::is_null_pointer<T>::value' instead in C++14 > {}; |
[编辑] 示例
运行此代码
#include <type_traits> static_assert(std::is_fundamental_v<int> == true); static_assert(std::is_fundamental_v<int&> == false); static_assert(std::is_fundamental_v<int*> == false); static_assert(std::is_fundamental_v<void> == true); static_assert(std::is_fundamental_v<void*> == false); static_assert(std::is_fundamental_v<float> == true); static_assert(std::is_fundamental_v<float&> == false); static_assert(std::is_fundamental_v<float*> == false); static_assert(std::is_fundamental_v<std::nullptr_t> == true); static_assert(std::is_fundamental_v<std::is_fundamental<int>> == false); class A {}; static_assert(std::is_fundamental_v<A> == false); static_assert(std::is_fundamental_v<std::is_fundamental<A>::value_type>); int main() {}
[编辑] 另请参阅
(C++11) |
检查类型是否为复合类型 (类模板) |
(C++11) |
检查类型是否为算术类型 (类模板) |
(C++11) |
检查类型是否为 void (类模板) |
(C++14) |
检查类型是否为 std::nullptr_t (类模板) |