[1,2,3,4,5,6][1,2,3];^ ^| |array + — array subscript access operation,where index is 1,2,3,which is an expression that evaluates to 3.
第二个
[...]不能是数组,因此是数组下标操作。下标操作的内容不是操作数的分隔列表,而是单个表达式。

[1,2,3,4,5,6][1,2,3];^ ^| |array + — array subscript access operation,where index is 1,2,3,which is an expression that evaluates to 3.
第二个
[...]不能是数组,因此是数组下标操作。下标操作的内容不是操作数的分隔列表,而是单个表达式。