学c语言的时候,如果要表示一个指针为空,我们会这样写:
int *p = NULL;
但这样写,某些情况下是会出问题的。
比如:
#include <iostream>
#include <string>
using namespace std;
void func(int* num)
{
cout << "this is the ptr function..." << endl;
}
void func(int num)
{
cout << "this is the normal function..." << endl;
}
void main(int argc, char** argv)
{
func(NULL);
}
出乎意料的是:程序会输出this is the normal function…
在编译器进行解释程序时,NULL会被直接解释成0,所以这里的参数根本就不是大家所想的NULL,参数已经被编译器偷偷换成了0,0是整数,所以调用的是第二个函数。
c11的出现彻底解决了这个问题,nullptr在C11中就是代表空指针,不能被转换成数字(具体底层是怎么实现的,大家可以看看API)
转自 https://blog.csdn.net/weixin_40237626/article/details/82560012