is_arithmetic Class
,如果类型是算术的,测试。
template<class Ty>
struct is_arithmetic;
参数
- Ty
查询的类型。
备注
该类型特性的实例适合,如果类型 Ty 是一个算术类型,也就是说,整型或浮点类型,或者 cv-qualified 窗体的其中一个元素,否则它包含错误。
示例
// std_tr1__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);
}
要求
**标题:**type_traits
命名空间: std