📜  C++中的type_traits :: is_null_pointer

📅  最后修改于: 2021-05-30 02:11:05             🧑  作者: Mango

C++ STL的type_traits :: is_null_pointer用于检查给定的类型是否为null_pointer。它返回布尔值true或false。以下是相同的语法:

头文件:

#include

句法:

template class T struct is_null_pointer;

参数:模板type_traits :: is_null_pointer接受单个参数T(Trait类)以检查T是否为null_pointer。

返回值:

  • True :如果类型为null_pointer。
  • False :如果指针不是空指针。

下面的程序说明了C++ STL中的std :: is_null_pointer模板:

程序1:

// C++ program to illustrate
// is_null_pointer template
  
#include 
#include 
using namespace std;
  
// Driver Code
int main()
{
  
    cout << boolalpha;
    cout << "is_null_pointer:" << endl;
    cout << "int *&: "
         << is_null_pointer::value
         << '\n';
    cout << "int *[10]: "
         << is_null_pointer::value
         << '\n';
    cout << "float *: "
         << is_null_pointer::value
         << '\n';
    cout << "int[10]:"
         << is_null_pointer::value
         << '\n';
  
    return 0;
}
输出:
is_null_pointer:
int *&: true
int *[10]: false
float *: false
int[10]:false

程式2:

// C++ program to illustrate
// is_null_pointer template
  
#include 
  
#include 
using namespace std;
  
// Driver Code
int main()
{
  
    cout << boolalpha
         << is_null_pointer::value
         << endl
         << is_null_pointer::value
         << endl
         << is_pointer::value
         << endl
         << is_pointer::value
         << endl;
}
输出:
true
false
false
true

参考: http://www.cplusplus.com/reference/type_traits/is_null_pointer/

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”