<type_traits>
, definicje typów
false_type, definicja typu
Przechowuje stałą całkowitą z wartością false.
typedef integral_constant<bool, false> false_type;
Uwagi
Typ jest synonimem specjalizacji szablonu integral_constant
.
Przykład
#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
definicja typu true_type
Przechowuje stałą całkowitą z wartością true.
typedef integral_constant<bool, true> true_type;
Uwagi
Typ jest synonimem specjalizacji szablonu integral_constant
.
Przykład
// 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