is_object Class
Prüft, ob ein Typ Objekttyp ist.
template<class Ty>
struct is_object;
Parameter
- Ty
Der abzufragende Typ.
Hinweise
Eine Instanz des Typs prädikats enthält FALSE, wenn der Typ Ty ein Referenztyp, ein Funktionstyp oder void ist, oder ein cv-qualified Formular aus einer der XML-Strukturen speichert, andernfalls true.
Beispiel
// 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);
}
Anforderungen
Header: <type_traits>
Namespace: std