雖然陣列索引的典型形式是array[index],但C 和C 提供了另一種語法:索引[陣列]。這種語法讓很多程式設計師感到困惑,但是根據語言規範它有效嗎?
int arr[] = {1, 2, 3}; 2[arr] = 5; // Does this compile? assert(arr[2] == 5); // Does this assertion fail?
這個技巧問題依賴以下的交換性質添加。操作index[array]被轉換為*(index array),並且由於加法是可交換的,我們可以假設2[arr]和arr[2]是等價的。不過,語言規範中並沒有明確說明這一點。
是的,根據 C 和 C 規範,程式碼是有效的。
C99 (6.5.2.1,段落1):
One of the expressions shall have type "pointer to object type", the other expression shall have integer type, and the result has type "type".
C99(6.5.2.1,第 2段):
A postfix expression followed by an expression in square brackets [] is a subscripted designation of an element of an array object. The definition of the subscript operator [] is that E1[E2] is identical to (*((E1)+(E2))). Because of the conversion rules that apply to the binary + operator, if E1 is an array object (equivalently, a pointer to the initial element of an array object) and E2 is an integer, E1[E2] designates the E2-th element of E1 (counting from zero).
這些規範不要求參數的順序使[]保持理性。因此,程式碼中的兩行都按預期編譯和執行,並且斷言通過。
以上是`index[array]` 是 C 和 C 語言中的有效陣列存取語法嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!