关于数组下标运算符

引用C11标准:

Array subsripting (§ 6.5.2.1)

The definition of the subscript operator [] is that E1[E2] is identical to (*((E1)+(E2))).

我想知道为什么E1周围的括号是必要的(它们在C89标准中缺失),即哪个表达式可以(*(E1(E2)))不同于(*((E1)(E2))) ?

解决方法

根据 http://www.open-std.org/jtc1/sc22/wg14/www/docs/n841.htm,为了清楚起见插入它.这两个表达式在语法上是等价的.

Public Comment Number PC-UK0103
Comment 1.
Category: Editorial change/non-normative contribution
Committee Draft subsection: 6.3.2.1
Title: Array subscripting example
Detailed description:

Paragraph 2 should replace “(*(E1+(E2)))” by “(*((E1)+(E2)))“,to avoid confusion. Yes,I know that the syntactic chart makes it quite unambiguous,but the current wording in paragraph 2 is very confusing.

相关文章

/** C+⬑ * 默认成员函数 原来C++类中,有6个默认成员函数: 构造函数 析构函数 拷贝...
#pragma once // 1. 设计一个不能被拷贝的类/* 解析:拷贝只会放生在两个场景中:拷贝构造函数以及赋值运...
C类型转换 C语言:显式和隐式类型转换 隐式类型转化:编译器在编译阶段自动进行,能转就转,不能转就编译...
//异常的概念/*抛出异常后必须要捕获,否则终止程序(到最外层后会交给main管理,main的行为就是终止) try...
#pragma once /*Smart pointer 智能指针;灵巧指针 智能指针三大件//1.RAII//2.像指针一样使用//3.拷贝问...
目录<future>future模板类成员函数:promise类promise的使用例程:packaged_task模板类例程...