次の方法で共有


<type_traits> typedefs

false_type
true_type

false_type Typedef

false 値を持つ整数定数を保持します。

typedef integral_constant<bool, false> false_type;

解説

この型は、テンプレート integral_constant から特化したテンプレートのシノニムです。

#include <type_traits>
#include <iostream>

int main() {
    std::cout << "false_type == " << std::boolalpha
        << std::false_type::value << std::endl;
    std::cout << "true_type == " << std::boolalpha
        << std::true_type::value << std::endl;

    return (0);
}
false_type == false
true_type == true

true_type Typedef

true 値を持つ整数定数を保持します。

typedef integral_constant<bool, true> true_type;

解説

この型は、テンプレート integral_constant から特化したテンプレートのシノニムです。

// std__type_traits__true_type.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>

int main() {
    std::cout << "false_type == " << std::boolalpha
        << std::false_type::value << std::endl;
    std::cout << "true_type == " << std::boolalpha
        << std::true_type::value << std::endl;

    return (0);
}
false_type == false
true_type == true

関連項目

<type_traits>