共用方式為


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); 
    } 
 
  

需求

標題: <type_traits>

命名空間: std

請參閱

參考

<type_traits>

false_type Typedef

其他資源

<type_traits> 成員