支架操作器应用于整数

时间:2012-09-21 17:02:30

标签: c++ brackets

  

可能重复:
  In C arrays why is this true? a[5] == 5[a]

我发现了一段以这种方式索引到字符串文字的代码:

#include <iostream>
using namespace std;

int main()
{
    cout << 1["52"] << endl;
    cout << 0["52"] << endl;
}

我尝试过搜索,但您可以想象搜索字词会带来不相关的主题。任何人都可以解释这是如何工作的吗?

我意识到它可能适用于任何指针,所以我也测试了它:

#include <iostream>
using namespace std;

int main()
{
    int a[2]; a[0] = 22; a[1] = 600; 

    cout << 1[a] << endl;
    cout << 0[a] << endl;
}

0 个答案:

没有答案