C++ STL的std :: is_object模板用于检查给定类型是否为对象。它返回一个显示相同值的布尔值。
句法:
template struct is_object;
参数:此模板接受单个参数T(特质类),以检查T是否为对象类型。
返回值:该模板返回一个布尔值,如下所示:
- True :如果类型是对象。
- False :如果类型是非对象。
下面的程序说明了C++ STL中的std :: is_object模板:
程序1 :
// C++ program to illustrate
// std::is_object template
#include
#include
using namespace std;
// main program
int main()
{
class gfg {
};
cout << boolalpha;
cout << "is_object:" << endl;
cout << "sam: " << is_object::value << '\n';
cout << "sam&: " << is_object::value << '\n';
cout << "int: " << is_object::value << '\n';
cout << "int&: " << is_object::value;
return 0;
}
输出:
is_object:
sam: true
sam&: false
int: true
int&: false
程序2 ::
// C++ program to illustrate
// std::is_object template
#include
#include
using namespace std;
// main program
int main()
{
class geeks {
};
cout << boolalpha;
cout << "is_object:" << endl;
cout << "float: " << is_object::value << '\n';
cout << "float&: " << is_object::value << '\n';
cout << "raj: " << is_object::value << '\n';
cout << "raj&: " << is_object::value << '\n';
cout << "char: " << is_object::value << '\n';
cout << "char&: " << is_object::value;
return 0;
}
输出:
is_object:
float: true
float&: false
raj: true
raj&: false
char: true
char&: false
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。