std::make_unsigned
STD:使[医]未签名
Defined in header | | |
---|---|---|
template< class T > struct make_unsigned; | | (since C++11) |
如果T
是除bool%29或枚举类型外的整数%28,则提供成员类型type
对应的无符号整数类型。T
,使用相同的cv-限定符。
否则,行为就没有定义。
成员类型
Name | Definition |
---|---|
type | the unsigned integer type corresponding to T |
帮助者类型
template< class T > using make_unsigned_t = typename make_unsigned | | (since C++14) |
---|
例
二次
#include <iostream>
#include <type_traits>
int main() {
typedef std::make_unsigned<char>::type char_type;
typedef std::make_unsigned<int>::type int_type;
typedef std::make_unsigned<volatile long>::type long_type;
bool ok1 = std::is_same<char_type, unsigned char>::value;
bool ok2 = std::is_same<int_type, unsigned int>::value;
bool ok3 = std::is_same<long_type, volatile unsigned long>::value;
std::cout << std::boolalpha
<< "char_type is 'unsigned char'? : " << ok1 << '\n'
<< "int_type is 'unsigned int'? : " << ok2 << '\n'
<< "long_type is 'volatile unsigned long'? : " << ok3 << '\n';
}
二次
产出:
二次
char_type is 'unsigned char'? : true
int_type is 'unsigned int'? : true
long_type is 'volatile unsigned long'? : true
二次
另见
is_signed (C++11) | checks if a type is signed arithmetic type (class template) |
---|---|
is_unsigned (C++11) | checks if a type is unsigned arithmetic type (class template) |
make_signed (C++11) | makes the given integral type signed (class template) |
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。