zoukankan      html  css  js  c++  java
  • NULL和nullptr的区别

    //error C2665: “go”: 2 个重载中没有一个可以转换所有参数类型

     1 #include <iostream>
     2 
     3 void go(int num)
     4 {
     5     std::cout << "go num" << std::endl;
     6 }
     7 
     8 void go(char *p)
     9 {
    10     std::cout << "go p" << std::endl;
    11 }
    12 
    13 void main()
    14 {
    15     void *p = NULL;
    16 
    17     go(p);//error C2665: “go”: 2 个重载中没有一个可以转换所有参数类型
    18 }

    NULL是0

    nullptr是空指针void

     1 #include <iostream>
     2 
     3 void go(int num)
     4 {
     5     std::cout << "go num" << std::endl;
     6 }
     7 
     8 void go(void *p)
     9 {
    10     std::cout << "go p" << std::endl;
    11 }
    12 
    13 void main()
    14 {
    15     void *p = NULL;
    16 
    17     go(p);//go p
    18 
    19     go(NULL);//go num
    20 
    21     go(nullptr);//go p
    22 
    23     system("pause");
    24 }
  • 相关阅读:
    [.NET学习]抽象&#
    几个国内开源
    通过C#命令行&#
    我的宝贝
    我的新博客
    常用的在线网
    收集一些.NET开
    论研究生学术
    在vs2008里安装使&#
    c#编码好习惯
  • 原文地址:https://www.cnblogs.com/denggelin/p/5663080.html
Copyright © 2011-2022 走看看