方括号前的 L"string" 是什么意思?

What a L"string" in front of square brackets mean?

我在一个看似微不足道的俄罗斯方块控制台游戏代码中发现了这个。

wchar_t *screen = new wchar_t[];
unsigned char *pField;
.
.
.
screen[someMathIndex] = L" ABCDEFG=#"[pField[someOtherMathIndex]];

方括号前面的wchar字符串是什么意思? 我什至找不到 google 的方法。 你能不能把我重定向到这个奇怪的东西的一些资源。

C++ 中的字符串文字实际上是数组。我这个案例L" ABCDEFG=#"是一个const wchar_t[11]。当你这样做时

L" ABCDEFG=#"[pField[someOtherMathIndex]]

您将转到 wchar_t 数组的第 pField[someOtherMathIndex] 个索引。