首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

std::make_unsigned

Defined in header <type_traits>

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<T>::type;

(since C++14)

二次

代码语言:javascript
复制
#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';
}

二次

产出:

二次

代码语言:javascript
复制
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)

代码语言:txt
复制
 © cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

扫码关注腾讯云开发者

领取腾讯云代金券