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