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


C++ is_signed用法及代码示例


C++ STL 的 std::is_signed 模板用于检查类型是否为有符号算术类型。

用法

template <class T > struct is_signed;

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

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

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

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



程序1:


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

程序2:


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

程序3:


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



相关用法


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