<type_traits>

类模板
<type_traits>

std::is_signed

template <class T> struct is_signed;
有符号类型

如果 T 是有符号的 算术类型,则该特性类标识此情况。

它继承自 integral_constant,并根据T被视为有符号。

一个类型,T如果该类型是算术类型(即,基本 整型浮点型 类型),并且满足以下条件,则该特性类认为该类型是 有符号 的。
1
T(-1) < T(0)

模板参数

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
17
// is_signed example
#include <iostream>
#include <type_traits>

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

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

输出
is_signed:
int: true
float: true
unsigned long: false
A: false
B: false


另见