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++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。