다음을 통해 공유


true_type Typedef

 

게시: 2016년 4월

값이 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