C++ nullptr

#include
using namespace std;

void get(int a)
{
    cout<<__func__<<"int"<void get(int *a)
{
    cout<<__func__<<"int*"<int main()
{
    int *p =NULL;//(void*)0;
    int *q = nullptr;//C++11的空指针定义
    get(NULL);
    get(nullptr);
//  get((void*)0);
}

你可能感兴趣的:(c++,nullptr)