nullptr

以前都是用0来表示空指针的,但由于0可以被隐式类型转换为整形,这就会存在一些问题。关键字nullptr是std::nullptr_t类型的值,用来指代空指针。nullptr和任何指针类型以及类成员指针类型的空值之间可以发生隐式类型转换,同样也可以隐式转换为bool型(取值为false)。但是不存在到整形的隐式类型转换

 #include<iostream>
using namespace std; int main()
{
int *p1 = NULL;
int *p2 = nullptr;
if (p1 == p2)
cout << "same" << endl;
bool a = nullptr;
int b = NULL;
cout << "a:"<< a << endl;
cout << "b:" << b << endl;
//int c = nullptr; //error system("pause");
}

nullptr

上一篇:scala学习手记37 - 容器的使用


下一篇:MapServer Tutorial——MapServer7.2.1教程学习(大纲)