<type_traits>

类模板
<type_traits>

std:: is_unsigned

template <class T> struct is_unsigned;
无符号类型

类型 T 的特性类,用于识别 T 是否为算术类型的无符号类型。

它继承自 integral_constant,并根据T是否被视为无符号类型,将其定义为 true_typefalse_type

类型T被此特性的类视为无符号,是指它是一个算术类型(即,一个基本整型浮点型),并且满足以下条件:
1
T(0) < T(-1)

模板参数

T
一个类型。

成员类型

继承自 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
// is_unsigned example
#include <iostream>
#include <type_traits>

struct A { };
enum class B : int { x,y,z };

int main() {
  std::cout << std::boolalpha;
  std::cout << "is_unsigned:" << std::endl;
  std::cout << "int: " << std::is_unsigned<int>::value << std::endl;
  std::cout << "unsigned long: " << std::is_unsigned<unsigned long>::value << std::endl;
  std::cout << "A: " << std::is_unsigned<A>::value << std::endl;
  std::cout << "B: " << std::is_unsigned<B>::value << std::endl;
  return 0;
}

输出
is_unsigned:
int: false
unsigned long: true
A: false
B: false


另见