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

C++ nullptr 的一种实现

时间:2016-03-18 13:31:42      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:

C/C++ 程序员都应该了解NULL, 0, nullptr,  NULL表示空指针,即指针不指向任何对象,C++11后有多了nullptr更好是表了这类概念,看看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 = {};

C++ nullptr 的一种实现

标签:

原文地址:http://www.cnblogs.com/keos/p/5291577.html

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