7,NULL与nullptr对比

Posted 喵小喵~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7,NULL与nullptr对比相关的知识,希望对你有一定的参考价值。

 1 #include <iostream>
 2 #include <array>
 3 using namespace std;
 4 
 5 void show(int num)
 6 {
 7     cout << "int" << endl;
 8 }
 9 
10 void show(int *p)
11 {
12     cout << "int *" << endl;
13 }
14 
15 void main()
16 {
17     //NULL C风格的空指针会被误认整数
18     //nullptr C++风格的空指针 严格类型匹配
19 
20     show(NULL);
21     show(nullptr);
22     cin.get();
23 }

 

以上是关于7,NULL与nullptr对比的主要内容,如果未能解决你的问题,请参考以下文章

NULL与nullptr

C/C++杂记:NULL与0的区别nullptr的来历

[转]为什么要引入nullptr?

C++11新特性nullptr与std::nullptr_t

nullptr/NULL

NULL0nullptr 区别分析