is_enum クラス
型が列挙型であるかどうかをテストします。
template<class Ty>
struct is_enum;
パラメーター
- Ty
問い合わせる型。
解説
型 Ty が列挙型または cv-qualified 形式の列挙型である場合、型述語のインスタンスは true を保持します。それ以外の場合は、false を保持します。
使用例
// std_tr1__type_traits__is_enum.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
enum color {
red, greed, blue};
int main()
{
std::cout << "is_enum<trivial> == " << std::boolalpha
<< std::is_enum<trivial>::value << std::endl;
std::cout << "is_enum<color> == " << std::boolalpha
<< std::is_enum<color>::value << std::endl;
std::cout << "is_enum<int> == " << std::boolalpha
<< std::is_enum<int>::value << std::endl;
return (0);
}
必要条件
ヘッダー: <type_traits>
名前空間: std