标签:
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 = {};
标签:
原文地址:http://www.cnblogs.com/keos/p/5291577.html