false_type Typedef
含有錯誤值的整數常數。
typedef integral_constant<bool, false> false_type;
備註
此類型是 integral_constant 樣板特製化的同義字。
範例
// std_tr1__type_traits__false_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