Bootstrap

C++nullptr和NULL的区别

NULL和nullptr

  • NULL是个宏定义
#ifdef __cplusplus
	#define NULL 0  //C++  整型0
#else
	#define NULL ((void *)0) //C 空指针
#endif
// C中
int *p1 = NULL; // 会发生隐式类型准换,void* -> int* 
//C++中
NULL就是0,此外void*不能隐式转换为其他类型的指针
  • 为了在C++中区分0和空指针,C+11引入nullptr来表示空指针
void f(int* ptr)
{
    cout << "int*" << endl;
}
void f(int ptr)
{
    cout << "int" << endl;
}
int main()
{
    f(NULL); // 调用f(int ptr) -> int
    f(nullptr); //调用f(int* ptr) -> int*
    return 0;
;