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

C++11 新特性之 nullptr

时间:2014-06-15 10:22:49      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   2014   

对于C和C++程序员来说,一定不会对NULL感到陌生。但是C和C++中的NULL却不等价。NULL表示指针不指向任何对象。

NULL是一个宏定义

在C中将NULL定义为void*指针值为0

#define NULL (void*)0

在C++中,NULL被定义为常数0

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

考虑下面的程序

#include <iostream>
#include <typeinfo>
using namespace std;

void f(int i)
{
	cout << "f(int)" << endl;
}

void f(void* ptr)
{
	cout << "f(void*)" << endl;
}

int main()
{
	f(NULL); 
	return 0;
}

输出结果:

bubuko.com,布布扣


nullptr取代了有错误倾向的NULL,nullptr可以被理解为指向NULL的指针

#include <iostream>
#include <typeinfo>
using namespace std;

void f(int i)
{
	cout << "f(int)" << endl;
}

void f(void* ptr)
{
	cout << "f(void*)" << endl;
}

int main()
{
	//f(NULL);
	f(0);       //输出为f(int)
	f(nullptr); //输出为f(void*)
	return 0;
}

nullptr适用于所有指针类别,包括函数指针和成员指针

const char *pc = str.c_str();
if (pc != nullptr)
	cout << pc << endl;
void (*func)() = nullptr;

不能将nullptr赋值给整形

int i1 = nullptr;    //error
if (i1 == nullptr){} //error
if (nullptr){}       //error
nullptr = 0;         //error







C++11 新特性之 nullptr,布布扣,bubuko.com

C++11 新特性之 nullptr

标签:style   class   blog   code   http   2014   

原文地址:http://blog.csdn.net/aspnet_lyc/article/details/30827073

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