定义于头文件
<type_traits>
|
||
template< class T >
struct make_signed; |
(C++11 起) | |
若 T
是整数(除 bool )或枚举类型,则提供是对应 T
的有符号整数类型的成员 typedef type
,它拥有相同的 cv 限定符。
否则,行为未定义。
目录 |
名称 | 定义 |
type
|
对应 T 的有符号整数类型
|
template< class T >
using make_signed_t = typename make_signed<T>::type; |
(C++14 起) | |
#include <iostream> #include <type_traits> int main() { typedef std::make_signed<char>::type char_type; typedef std::make_signed<int>::type int_type; typedef std::make_signed<volatile long>::type long_type; bool ok1 = std::is_same<char_type, signed char>::value; bool ok2 = std::is_same<int_type, signed int>::value; bool ok3 = std::is_same<long_type, volatile signed long>::value; std::cout << std::boolalpha << "char_type is 'signed char'? : " << ok1 << '\n' << "int_type is 'signed int'? : " << ok2 << '\n' << "long_type is 'volatile signed long'? : " << ok3 << '\n'; }
输出:
char_type is 'signed char'? : true int_type is 'signed int'? : true long_type is 'volatile signed long'? : true
(C++11)
|
检查类型是否为有符号算术类型 (类模板) |
(C++11)
|
检查类型是否为无符号算术类型 (类模板) |
(C++11)
|
将整数类型转换成对应的无符号整数类型 (类模板) |