std::is_literal_type
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <type_traits> 中定义
|
||
template< class T > struct is_literal_type; |
(C++11 起) | |
T
是文本类型,提供成员value
等于true。对于任何其他类型,value
是false.原文:
If
T
is a literal type, provides the member constant value
equal true. For any other type, value
is false.文本类型是任何标量类型,任何引用类型或类类型
原文:
A literal type is any scalar type, any reference type or a class type that:
1。有一个平凡的析构函数
2。它的构造函数调用的非静态数据成员的初始化是常量表达式
原文:
2. all of its constructor calls and initializers for nonstatic data members are constant expressions
3。是一个聚合类型,或至少有一个是复制或移动的构造constexpr构造函数
原文:
3. is an aggregate type or has at least one constexpr constructor that is not a copy or move constructor
4。所有的非静态数据成员和基类是文本类型
原文:
4. all of its nonstatic data members and base classes are literal types
文字类型的数组也是一个文本类型.
原文:
An array of literal types is also a literal type.
目录 |
Inherited from std::integral_constant
Member constants
value [静态的]</div></div>
|
true如果 T is a literal type,false其他方式 原文: true if T is a literal 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>
[编辑] 注释
只有文本类型可以作为参数来使用,或返回从constexpr功能。只有文字类可能有constexpr的成员函数.
原文:
Only literal types may be used as parameters to or returned from constexpr functions. Only literal classes may have constexpr member functions.
[编辑] 示例
#include <iostream> #include <type_traits> struct A { int m; }; struct B { virtual ~B(); }; int main() { std::cout << std::boolalpha; std::cout << std::is_literal_type<A>::value << '\n'; std::cout << std::is_literal_type<B>::value << '\n'; }
输出:
true false