编程语言
首页 > 编程语言> > C++新特性 nullptr 和 constexptr

C++新特性 nullptr 和 constexptr

作者:互联网

1.1

#include <iostream>

using namespace std;

void foo(char *p) {
    cout << "char*" << endl;
}

void foo(int p) {
    cout << "int" << endl;
}

int main() {
    cout << "hello world" << endl;
    char *p = NULL;
    foo(NULL);
    foo(p);
}

标签:std,constexptr,1.1,namespace,void,nullptr,C++,foo
来源: https://www.cnblogs.com/jerry-1015/p/16483672.html