std::make_unsigned
来自 cppreference.com
定义在头文件 <type_traits> 中 |
||
template< class T > struct make_unsigned; |
(自 C++11 起) | |
如果 T
是一个整型(除了 bool)或枚举类型,则提供成员 typedef type
,它是与 T
对应的无符号整型,具有相同的 cv 限定符。
如果 T
是带符号或无符号 char,short,int,long,long long;则提供与 T
对应的此列表中的无符号类型。
如果 T
是一个枚举类型或 char,wchar_t, char8_t(自 C++20 起), char16_t, char32_t;则提供具有与 T
相同 sizeof
的最小 等级 的无符号整型。
否则,行为未定义。 |
(直到 C++20) |
否则,程序格式错误。 |
(自 C++20 起) |
如果程序为 std::make_unsigned
添加了专门化,则行为未定义。
内容 |
[编辑] 成员类型
名称 | 定义 |
type
|
与 T 对应的无符号整型 |
[编辑] 辅助类型
template< class T > using make_unsigned_t = typename make_unsigned<T>::type; |
(自 C++14 起) | |
[编辑] 示例
运行此代码
#include <type_traits> int main() { using uchar_type = std::make_unsigned_t<char>; using uint_type = std::make_unsigned_t<int>; using ulong_type = std::make_unsigned_t<volatile long>; static_assert( std::is_same_v<uchar_type, unsigned char> and std::is_same_v<uint_type, unsigned int> and std::is_same_v<ulong_type, volatile unsigned long> ); }
[编辑] 另请参阅
(C++11) |
检查类型是否为带符号算术类型 (类模板) |
(C++11) |
检查类型是否为无符号算术类型 (类模板) |
(C++11) |
获取给定整型对应的带符号类型 (类模板) |