nullptr pointer literal
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
目录 |
[编辑] 语法
nullptr
|
(C++11 起) | ||||||||
[编辑] 解释
关键字
从nullptr
表示空指针常量。它是一个未指定的类型prvaluestd::nullptr_t。 <div class="t-tr-text">隐式转换原文:
implicit conversions
这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
nullptr
存在任何指针类型的空指针值的任何成员指针类型。类似的转换存在的任何值类型std::nullptr_t以及宏NULL,空指针常量.原文:
The keyword
nullptr
denotes the null pointer literal. It is an unspecified prvalue of type std::nullptr_t. There exist 隐式转换</div> from
原文:
implicit conversions
这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
nullptr
to null pointer value of any pointer type and any pointer to member type. Similar conversions exist for any value of type std::nullptr_t as well as for the macro NULL, the null pointer constant.[编辑] 示例
演示如何nullptr允许转发通过一个模板函数.
原文:
Demonstrates how nullptr allows forwarding via a template function.
输出:
Function g called Function g called Function g called
[编辑] 关键字
[编辑] 另请参阅
编译器定义的空指针常量 (常量宏) |