Classe is_empty
Testa se o tipo é uma classe vazia.
template<class Ty>
struct is_empty;
Parâmetros
- Ty
O tipo para consulte.
Comentários
Uma instância do predicado do tipo se aplica se o tipo Ty é uma classe vazia, se não mantém false.
Exemplo
// std_tr1__type_traits__is_empty.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct empty
{
};
struct trivial
{
int val;
};
int main()
{
std::cout << "is_empty<trivial> == " << std::boolalpha
<< std::is_empty<trivial>::value << std::endl;
std::cout << "is_empty<empty> == " << std::boolalpha
<< std::is_empty<empty>::value << std::endl;
std::cout << "is_empty<int> == " << std::boolalpha
<< std::is_empty<int>::value << std::endl;
return (0);
}
Requisitos
Cabeçalho: <type_traits>
Namespace: std