首页 > 编程语言 > 详细

c++11 nullptr

时间:2017-11-05 14:13:32      阅读:207      评论:0      收藏:0      [点我收藏+]

c++11 nullptr

#define _CRT_SECURE_NO_WARNINGS

#include <iostream>
#include <string>
#include <vector>
#include <map>

void func(int a)
{
    std::cout << __LINE__ << " a= " << a << std::endl;
}

void func(int *p)
{
    std::cout << __LINE__ << " p= " << p << std::endl;
}

void mytest()
{
    int *p1 = nullptr;
    int *p2 = NULL;
    if (p1 == p2)
    {
        std::cout << "equal" << std::endl;
    }

    // int a = nullptr; // err, 编译失败,nullptr不能转型为int

    func(0); // 调用func(int)
    func(NULL); // 调用func(int)
    func(nullptr); // 调用func(int *p)

    return;
}

int main()
{
    mytest();

    system("pause");
    return 0;
}

 

c++11 nullptr

原文:http://www.cnblogs.com/lsgxeva/p/7787304.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!