Udostępnij za pośrednictwem


is_empty Class

Testy, jeśli typ jest klasą puste.

template<class Ty>
    struct is_empty;

Parametry

  • Ty
    Typ kwerendy.

Uwagi

Wystąpienie predykat typu posiada true, jeśli typ Ty jest pusta klasą, inaczej przechowuje wartość false.

Przykład

 

// 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); 
    } 
 
  

Wymagania

Nagłówek: <type_traits>

Obszar nazw: std

Zobacz też

Informacje

<type_traits>

Inne zasoby

<type_traits> Członkowie