<type_traits>
typedef
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