码迷,mamicode.com
首页 > 编程语言 > 详细

c++11 nullptr

时间:2017-11-05 14:33:23      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:==   def   style   warning   str   turn   vector   log   define   

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

标签:==   def   style   warning   str   turn   vector   log   define   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!