當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ type_traits::is_null_pointer用法及代碼示例


C++ STL 的 type_traits::is_null_pointer 用於檢查給定的類型是否為 null_pointer。它返回布爾值 true 或 false。以下是相同的語法:

頭文件:

#include<type_traits>

用法:

template class T struct is_null_pointer;

參數:模板 type_traits::is_null_pointer 接受單個參數 T(Trait 類)來檢查 T 是否為 null_pointer。

返回值:



  • 真的:如果類型是 null_pointer。
  • 錯誤的:如果指針不是空指針。

以下示例程序旨在說明 C++ STL 中的 std::is_null_pointer 模板:

程序1:


// C++ program to illustrate
// is_null_pointer template
  
#include <bits/stdc++.h>
#include <type_traits>
using namespace std;
  
// Driver Code
int main()
{
  
    cout << boolalpha;
    cout << "is_null_pointer:" << endl;
    cout << "int *&:"
         << is_null_pointer<decltype(nullptr)>::value
         << '\n';
    cout << "int *[10]:"
         << is_null_pointer<int * [10]>::value
         << '\n';
    cout << "float *:"
         << is_null_pointer<float*>::value
         << '\n';
    cout << "int[10]:"
         << is_null_pointer<int[10]>::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 <bits/stdc++.h>
  
#include <type_traits>
using namespace std;
  
// Driver Code
int main()
{
  
    cout << boolalpha
         << is_null_pointer<decltype(nullptr)>::value
         << endl
         << is_null_pointer<int*>::value
         << endl
         << is_pointer<decltype(nullptr)>::value
         << endl
         << is_pointer<int*>::value
         << endl;
}
輸出:
true
false
false
true

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





注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 type_traits::is_null_pointer in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。