共用方式為


<type_traits> typedef

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>