<type_traits>

类模板
<type_traits>

std::is_literal_type

template <class T> struct is_literal_type;
字面量类型

标识 T 是否为字面量类型的特性类。

一个 字面量类型 是一个可以作为constexpr的类型。这对于 标量 类型、引用、某些类以及任何此类类型的数组都是成立的。

字面量类型的类是指(使用, struct联合体定义)
  • 具有平凡析构函数,
  • 所有构造函数调用和任何具有花括号或等号初始化的非静态数据成员都是常量表达式,
  • 是*聚合类型*,或至少有一个constexpr构造函数或构造函数模板,但不是复制或移动构造函数,并且
  • 所有非静态数据成员和基类都是*字面量类型*

is_literal_type继承自 integral_constant,其值为 true_typefalse_type,具体取决于T是否为平凡类型。

模板参数

T
一个完整类型,或者void(可能被 cv 限定),或具有完整元素类型的未知边界数组。

成员类型

继承自 integral_constant
成员类型定义
value_typebool
类型true_type 或 false_type

成员常量

继承自 integral_constant
成员常量定义
truefalse

成员函数

继承自 integral_constant

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// is_literal_type example
#include <iostream>
#include <type_traits>

struct A { };
struct B { ~B(){} };

int main() {
  std::cout << std::boolalpha;
  std::cout << "is_literal_type:" << std::endl;
  std::cout << "int: " << std::is_literal_type<int>::value << std::endl;
  std::cout << "int&: " << std::is_literal_type<int&>::value << std::endl;
  std::cout << "int*: " << std::is_literal_type<int*>::value << std::endl;
  std::cout << "A: " << std::is_literal_type<A>::value << std::endl;
  std::cout << "B: " << std::is_literal_type<B>::value << std::endl;
  return 0;
}

输出
is_literal_type:
int: true
int&: true
int*: true
A: true
B: false


另见