当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ is_unsigned用法及代码示例


C++ STL 的 std::is_unsigned 模板用于检查类型是否为无符号算术类型。它返回一个显示相同的布尔值。

用法

template <class T > struct is_unsigned;

参数:此模板包含单个参数 T(Trait 类)以检查 T 是否为无符号算术类型。

返回值:此模板返回一个布尔值,如下所示:

  • True:如果类型是 un-signed 算术类型。
  • False:如果类型是有符号算术类型。

以下示例程序旨在说明 C++ STL 中的 std::is_unsigned 模板:



程序1:


// C++ program to illustrate
// std::is_unsigned template
  
#include <iostream>
#include <type_traits>
using namespace std;
  
class gfg {
};
  
enum sam:unsigned {};
enum class raj:unsigned {};
  
int main()
{
    cout << boolalpha;
    cout << "is_unsigned:" << '\n';
    cout << "unsigned int:"
         << is_unsigned<unsigned int>::value << '\n';
    cout << "gfg:"
         << is_unsigned<gfg>::value << '\n';
    cout << "sam:"
         << is_unsigned<sam>::value << '\n';
    cout << "raj:"
         << is_unsigned<raj>::value << '\n';
  
    return 0;
}
输出:
is_unsigned:
unsigned int:true
gfg:false
sam:false
raj:false

程序2:


// C++ program to illustrate
// std::is_unsigned template
  
#include <iostream>
#include <type_traits>
using namespace std;
  
int main()
{
    cout << boolalpha;
    cout << "is_unsigned:" << '\n';
    cout << "signed char:"
         << is_unsigned<signed char>::value << '\n';
    cout << "unsigned char:"
         << is_unsigned<unsigned char>::value << '\n';
    cout << "signed int:"
         << is_unsigned<signed int>::value << '\n';
  
    return 0;
}
输出:
is_unsigned:
signed char:false
unsigned char:true
signed int:false

程序3:


// C++ program to illustrate
// std::is_unsigned template
  
#include <iostream>
#include <type_traits>
using namespace std;
  
int main()
{
    cout << boolalpha;
    cout << "is_unsigned:" << '\n';
    cout << "bool:"
         << is_unsigned<bool>::value << '\n';
    cout << "float:"
         << is_unsigned<float>::value << '\n';
    cout << "double:"
         << is_unsigned<double>::value << '\n';
  
    return 0;
}
输出:
is_unsigned:
bool:true
float:false
double:false



相关用法


注:本文由纯净天空筛选整理自rajasethupathi大神的英文原创作品 is_unsigned template in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。