nullptr 不是一个特殊的关键字和 std::nullptr_t 的对象吗?

发布于 2024-11-19 18:17:44 字数 581 浏览 7 评论 0原文

可能的重复:
nullptr 到底是什么?

我首先认为它是一个关键字。我现在的 gcc 不会以不同的阴影突出显示 nullptr。为了验证这一点,我写了以下内容:

void *&p = nullptr;

所以我从错误中得到了一些线索:

错误:“void*&”类型的非常量引用的初始化无效 来自“std::nullptr_t”类型的右值

如果 nullptr 是一个对象,那么它真的是一个相当于简单 0 的指针吗?换句话说,假设我写:

#define NULL nullptr

上述语句不会改变我的代码中的任何内容吗?此外,了解 std::nullptr_t 类型的其他用例也会很有趣。

Possible Duplicate:
What exactly is nullptr?

I first thought it's a keyword. My present gcc doesn't highlight nullptr in a different shade. To verify that, I wrote following:

void *&p = nullptr;

So I got some clue from the error that:

error: invalid initialization of non-const reference of type ‘void*&’
from an rvalue of type ‘std::nullptr_t’

If nullptr is an object then is it really a pointer equivalent of simple 0? In other word, suppose I write:

#define NULL nullptr

Is the above statement doesn't alter anything in my code ? Also, it would be interesting to know other use cases for std::nullptr_t type as such.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

守不住的情 2024-11-26 18:17:44

它是一个关键字,标准草案说 (lex.nullptr):

指针文字是关键字 nullptr。它是 std::nullptr_t 类型的纯右值。

nullptr 还不是指针,但它可以转换为指针类型。这会禁止您的上述分配,这是对不相关引用类型的分配,在这种情况下不可能进行转换(考虑int& a = 1.f;!)。

执行 #define NULL nullptr 不应改变行为,除非您确实在诸如 int i = 4; 之类的上下文中使用了 NULL 。 if(NULL == i) {},它不适用于 nullptr,因为 nullptr 不能被视为整数文字。

我认为 std::nullptr_t 没有很多其他用例,它只是一个哨兵,因为 nullptr 需要一个类型。

It is a keyword, the standard draft says (lex.nullptr):

The pointer literal is the keyword nullptr. It is a prvalue of type std::nullptr_t.

the nullptr is not yet a pointer, but it can be converted to a pointer type. This forbids your above assignment, which is an assignment to an unrelated reference type, in which case no conversion is possible (consider int& a = 1.f;!).

Doing #define NULL nullptr shouldn't alter the behaviour unless you did use NULL in a context such as int i = 4; if(NULL == i) {}, which won't work with nullptr because nullptr is can't be treated as an integer literal.

I don't think there are many other use-cases for std::nullptr_t, it's just a sentinel because nullptr needs a type.

倾城花音 2024-11-26 18:17:44

nullptr 是表示空指针常量的关键字。它的类型为 nullptr_t,可隐式转换并可与任何指针类型或指向成员的指针类型进行比较。

阅读这些,

nullptr is a keyword that represents null pointer constant. It is of type nullptr_t, which is implicitly convertible and comparable to any pointer type or pointer-to-member type.

Read these,

她说她爱他 2024-11-26 18:17:44

nullptr 不是一个对象,就像 0 不是一个整数对象一样。前者是 std::nullptr_t 类型的纯右值(即一种表达式),后者是 int< 类型的整数文字(也是一种表达式,也是一种纯右值) /代码>。

可以使用这样的表达式初始化对象:

void* p = nullptr;
int i = 0;

不可能使用这样的表达式初始化左值引用,因为它们是纯右值;左值引用只能从左值初始化。

void*& p = nullptr; // Invalid
int& i = 0; // Invalid

nullptr is not an object just like 0 is not an integer object. The former is a prvalue (i.e. a kind of expression) of type std::nullptr_t and the latter is an integer literal (also a kind of expression and also a prvalue) of type int.

It is possible to initialize an object with such expressions:

void* p = nullptr;
int i = 0;

It is not possible to initialize an lvalue reference with such expressions because they are prvalues; an lvalue reference can only be initialized from an lvalue.

void*& p = nullptr; // Invalid
int& i = 0; // Invalid
巡山小妖精 2024-11-26 18:17:44

nullptr 确实是一个关键字,标准要求类型 std::nullptr_t 等同于 typedef decltype(nullptr) nullptr_t; 以启用重载基于nullptr

nullptr is indeed a keyword and the standard demands a type std::nullptr_t to be equivalent to typedef decltype(nullptr) nullptr_t; to enable overloading based on nullptr.

北城孤痞 2024-11-26 18:17:44

nullptr 将成为下一个 C++ 标准(现在称为 C++0x)中的关键字。

需要消除 f(int)f(T*) 之间的歧义,因此它不是简单的 0,而是 nullptr_t

我不知道 gcc 可以突出显示代码;-)

nullptr will be a keyword in next C++ standard, now called C++0x.

It is needed to disambiguate between f(int) and f(T*), so it's not simply 0, but of nullptr_t.

I didn't know gcc can highlight code ;-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文