<type_traits>
tür tanımları
false_type Typedef
False değeriyle tamsayı sabiti tutar.
typedef integral_constant<bool, false> false_type;
Açıklamalar
türü, şablonun integral_constant
özelleştirilmesi için bir eş anlamlıdır.
Örnek
#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
Gerçek değerle tamsayı sabiti tutar.
typedef integral_constant<bool, true> true_type;
Açıklamalar
türü, şablonun integral_constant
özelleştirilmesi için bir eş anlamlıdır.
Örnek
// 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