C++中NULL和nullptr的区别

C++对于NULL的定义的源码

#ifndef NULL
    #ifdef __cplusplus
        #define NULL 0
    #else
        #define NULL ((void *)0)
    #endif
#endif

看来NULL在C++里是0,在C++中可以用0表示空指针,但是用NULL表示空指针会有问题,因为NULL=0,实际是int类型,所以在调用重载函数的时候不是想象的调用。

#include "stdafx.h"
#include "iostream"
using namespace std;
void func(int n)
{
    cout << "func(int n)" << endl;
}
void func(void* c)
{
    cout << "func(void* c)" << endl;
}

int main()
{
    func(NULL);
    func(nullptr);
    getchar();
    return 0;
}

调用结果:

func(int n)
func(void* c)

为了解决这个二义性,11版本上新增了nullptr,所以用NULL表示0,其他空指针使用nullptr.

其他:在没有C++ 11的nullptr的时候,我们怎么解决避免这个问题呢?

const class nullptr_t
{
public:
    template<class T>
    inline operator T*() const
        { return 0; }
 
    template<class C, class T>
    inline operator T C::*() const
        { return 0; }
 
private:
void operator&() const;
} nullptr = {};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值