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


C++ is_arithmetic用法及代碼示例


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

is_arithmetic 模板有助於檢查給定的類 T 是否屬於算術類型。

什麽是算術類型?

算術類型由兩種類型組成,即

  • integral types- 在這裏,我們定義了整數。以下是整數類型的類型 -

    • char
    • bool
    • int
    • long
    • short
    • long long
    • wchar_t
    • char16_t
    • char32_t
  • floating point types− 這些可以容納小數部分。以下是浮點類型。

    • Float
    • Double
    • Long double

因此,模板 is_arithmatic 會檢查定義的類型 T 是否為算​​術類型,並相應地返回 true 或 false。

用法

template <class T> is_arithmetic;

參數

一個模板隻能有一個 T 類型的參數,並檢查該參數是否為算術類型。

返回值

此函數返回一個 bool 類型的值,該值可以是 true 或 false。如果給定的類型是算術,則返回 true,如果類型不是算術,則返回 false。

示例

Input:is_arithmetic<bool>::value;
Output:True

Input:is_arithmetic<class_a>::value;
Output:false

示例

#include <iostream>
#include <type_traits>
using namespace std;
class TP {
};
int main() {
   cout << boolalpha;
   cout << "checking for is_arithmetic template:";
   cout << "\nTP class:"<< is_arithmetic<TP>::value;
   cout << "\n For Bool value:"<< is_arithmetic<bool>::value;
   cout << "\n For long value:"<< is_arithmetic<long>::value;
   cout << "\n For Short value:"<< is_arithmetic<short>::value;
   return 0;
}

輸出

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

checking for is_arithmetic template:
TP class:false
For Bool value:true
For long value:true
For Short value:true

示例

#include <iostream>
#include <type_traits>
using namespace std;
int main() {
   cout << boolalpha;
   cout << "checking for is_arithmetic template:";
   cout << "\nInt:"<< is_arithmetic<int>::value;
   cout << "\nchar:"<< is_arithmetic<char>::value;
   cout << "\nFloat:"<< is_arithmetic<float>::value;
   cout << "\nDouble:"<< is_arithmetic<double>::value;
   cout << "\nInt *:"<< is_arithmetic<int*>::value;
   cout << "\nchar *:"<< is_arithmetic<char*>::value;
   cout << "\nFloat *:"<< is_arithmetic<float*>::value;
   cout << "\nDouble *:"<< is_arithmetic<double*>::value;
   return 0;
}

輸出

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

checking for is_arithmetic template:
Int:true
Char:true
Float:true
Double:true
Int *:float
Char *:float
Float *:float
Double *:float

相關用法


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