is_arithmetic クラス
種類が演算かどうかをテストします。
構文
template <class Ty>
struct is_arithmetic;
パラメーター
Ty
照会する型。
解説
型述語のインスタンスは、型 Ty が演算型 (つまり、整数型または浮動小数点型)、またはそのいずれかの cv-qualified
形式の場合は true を保持し、それ以外の場合は false を保持します。
例
// std__type_traits__is_arithmetic.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
int main()
{
std::cout << "is_arithmetic<trivial> == " << std::boolalpha
<< std::is_arithmetic<trivial>::value << std::endl;
std::cout << "is_arithmetic<int> == " << std::boolalpha
<< std::is_arithmetic<int>::value << std::endl;
std::cout << "is_arithmetic<float> == " << std::boolalpha
<< std::is_arithmetic<float>::value << std::endl;
return (0);
}
is_arithmetic<trivial> == false
is_arithmetic<int> == true
is_arithmetic<float> == true
要件
ヘッダー: <type_traits>
名前空間: std