當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ is_unsigned用法及代碼示例


在本文中,我們將討論 C++ STL 中 std::is_unsigned 模板的工作、語法和示例。

is_unsigned 是位於 <type_traits> 頭文件下的模板。此模板用於檢查給定類型 T 是否為無符號類型。

C++ 中的無符號數據類型是什麽?

無符號數據類型是我們使用的那些知道值不會變成負數的數據類型,例如卷數、隨機數的 id 等。

為了使類型為無符號,我們使用關鍵字無符號作為數據類型的前綴,例如 -

無符號整數;

無符號浮點數;

用法

template <class T>is_unsigned;

參數

模板隻能有 T 類型的參數,並檢查 T 是否為無符號類型。

返回值

它返回一個布爾值,如果給定類型是無符號類型,則返回 true,如果給定類型不是無符號類型,則返回 false。

示例

Input:is_unsigned<unsigned int>::value;
Output:True

Input:is_unsigned<int>::value;
Output:False

示例

#include <iostream>
#include <type_traits>
using namespace std;
class TP {
};
enum TP_1:int {};
enum class TP_2:int {};
int main() {
   cout << boolalpha;
   cout << "checking for is_unsigned:";
   cout << "\nint:" << is_unsigned<int>::value;
   cout << "\nTP:" << is_unsigned<TP>::value;
   cout << "\nTP_1:" << is_unsigned<TP_1>::value;
   cout << "\nTP_2:" << is_unsigned<TP_2>::value;
   return 0;
}

輸出

如果我們運行上麵的代碼,它將生成以下輸出 -

checking for is_unsigned:
Int:false
TP:false
TP_1:false
TP_2:false

示例

#include <iostream>
#include <type_traits>
using namespace std;
int main() {
   cout << boolalpha;
   cout << "checking for is_unsigned:";
   cout << "\nfloat:" << is_unsigned<float>::value;
   cout << "\nSigned int:" << is_unsigned<signed int>::value;
   cout << "\nUnsigned int:" << is_unsigned<unsigned int>::value;
   cout << "\ndouble:" << is_unsigned<double>::value;
   return 0;
}

輸出

如果我們運行上麵的代碼,它將生成以下輸出 -

checking for is_signed:
Float:false
Signed int:false
Unsigned int:true
Double:false

相關用法


注:本文由純淨天空篩選整理自Sunidhi Bansal大神的英文原創作品 is_unsigned template in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。