C++中std::is_object模板
C++ STL中的 std::is_object模板 用于检查给定的类型是否为对象类型。它返回一个显示相同的布尔值。
语法:
template <class T> struct is_object;
参数: 这个模板接受一个参数T(Trait类)来检查T是否是对象类型。
返回值: 这个模板返回以下布尔值:
- True :如果类型是对象。
- False :如果类型是非对象。
下面的程序说明了在C++ STL中使用std::is_object模板:
程序1: :
// C++ program to illustrate
// std::is_object template
#include <iostream>
#include <type_traits>
using namespace std;
// main program
int main()
{
class gfg {
};
cout << boolalpha;
cout << "is_object:" << endl;
cout << "sam: " << is_object<gfg>::value << '\n';
cout << "sam&: " << is_object<gfg&>::value << '\n';
cout << "int: " << is_object<int>::value << '\n';
cout << "int&: " << is_object<int&>::value;
return 0;
}
is_object:
sam: true
sam&: false
int: true
int&: false
程序2: :
// C++ program to illustrate
// std::is_object template
#include <iostream>
#include <type_traits>
using namespace std;
// main program
int main()
{
class geeks {
};
cout << boolalpha;
cout << "is_object:" << endl;
cout << "float: " << is_object<float>::value << '\n';
cout << "float&: " << is_object<float&>::value << '\n';
cout << "raj: " << is_object<geeks>::value << '\n';
cout << "raj&: " << is_object<geeks&>::value << '\n';
cout << "char: " << is_object<char>::value << '\n';
cout << "char&: " << is_object<char&>::value;
return 0;
}
is_object:
float: true
float&: false
raj: true
raj&: false
char: true
char&: false