次の方法で共有


true_type Typedef

 

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

構文

typedef integral_constant<bool, true> true_type;

解説

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

使用例

 

// std_tr1__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>

名前空間: std

参照

<type_traits>
false_type Typedef