为什么 c++ 中 x[y] == y[x]?

发布于 2024-12-16 23:45:29 字数 431 浏览 0 评论 0原文

可能的重复:
在 C 数组中为什么会这样? a[5] == 5[a]

有人告诉我这个......我一开始并不相信他们,但它确实有效。如果 x 和 y 在整个代码中没有改变,为什么会这样:

int x [5] = { 0,1,2,3,4};
int y = 3;

if(x[y] == y[x]){
    cout << "Why..." << endl;
}

索引 y 中 x 数组的值如何 = 数组 y 中 x 索引的值?但没有 y 数组。

Possible Duplicate:
In C arrays why is this true? a[5] == 5[a]

Someone told me this... I didn't believe them at first but it does work. If x and y do not change throughout the code, why does this work:

int x [5] = { 0,1,2,3,4};
int y = 3;

if(x[y] == y[x]){
    cout << "Why..." << endl;
}

How does x array's value in index y is = the x index's value's in array y? But there was no y array.

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

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

发布评论

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

评论(3

源来凯始玺欢你 2024-12-23 23:45:29

它始终为真(对于普通运算符==),

a[i]  --> *(a+i) --> *(i+a) --> i[a]

因为 int 是内在的并且具有可交换运算符==,这将始终为真

It is always true (for normal operator==)

a[i]  --> *(a+i) --> *(i+a) --> i[a]

since int is intrinsic and has commutative operator==, this will always be true

北斗星光 2024-12-23 23:45:29

因为以下所有内容都是相同的:

x[y] == y[x] == *(x+y) == *(y+x)

Because all of the following are same:

x[y] == y[x] == *(x+y) == *(y+x)
绮烟 2024-12-23 23:45:29

因为 x[y] 只是 *(x + y) 的另一种表达方式,与 *(y + x) 相同>。

Because x[y] is just another way to say *(x + y), and that is the same as *(y + x).

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