對於C和C++程序員來說,一定不會對NULL感到陌生。但是C和C++中的NULL卻不等價。NULL表示指針不指向任何對象。
NULL是一個宏定義
在C中將NULL定義為void*指針值為0
#define NULL (void*)0
#ifndef NULL #ifdef __cplusplus #define NULL 0 #else #define NULL ((void *)0) #endif #endif
#include#include using namespace std; void f(int i) { cout << "f(int)" << endl; } void f(void* ptr) { cout << "f(void*)" << endl; } int main() { f(NULL); return 0; }
輸出結果:
不能將nullptr賦值給整形
<喎?http://www.Bkjia.com/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+bnVsbHB0csihtPrBy9PQtO3O88fjz/K1xE5VTEwsbnVsbHB0cr/J0tSxu8DtveLOqta4z/JOVUxMtcTWuNXrPC9wPgo8cD48L3A+CjxwcmUgY2xhc3M9"brush:java;">#include
nullptr適用於所有指針類別,包括函數指針和成員指針
const char *pc = str.c_str();
if (pc != nullptr)
cout << pc << endl;
void (*func)() = nullptr;
int i1 = nullptr; //error
if (i1 == nullptr){} //error
if (nullptr){} //error
nullptr = 0; //error