Udostępnij za pośrednictwem


is_object Class

Testy, jeśli typem jest typ obiektu.

template<class Ty>
    struct is_object;

Parametry

  • Ty
    Typ kwerendy.

Uwagi

Wystąpienie predykat typu przechowuje wartość false, jeśli typ Ty jest typem odwołania, funkcja typ lub void, lub cv-qualified formę jednego z nich, inaczej pozostaje prawdziwe.

Przykład

 

// std_tr1__type_traits__is_object.cpp 
// compile with: /EHsc 
#include <type_traits> 
#include <iostream> 
 
struct trivial 
    { 
    int val; 
    }; 
 
struct functional 
    { 
    int f(); 
    }; 
 
int main() 
    { 
    std::cout << "is_object<trivial> == " << std::boolalpha 
        << std::is_object<trivial>::value << std::endl; 
    std::cout << "is_object<functional> == " << std::boolalpha 
        << std::is_object<functional>::value << std::endl; 
    std::cout << "is_object<trivial&> == " << std::boolalpha 
        << std::is_object<trivial&>::value << std::endl; 
    std::cout << "is_object<float()> == " << std::boolalpha 
        << std::is_object<float()>::value << std::endl; 
    std::cout << "is_object<void> == " << std::boolalpha 
        << std::is_object<void>::value << std::endl; 
 
    return (0); 
    } 
 
  

Wymagania

Nagłówek: <type_traits>

Obszar nazw: std

Zobacz też

Informacje

<type_traits>

is_function Class

Inne zasoby

<type_traits> Członkowie