C++ nullptr 的一种实现
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ nullptr 的一种实现相关的知识,希望对你有一定的参考价值。
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 的一种实现的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Visual C++ 2010 中从 C++0x 启用 nullptr?