- 论坛徽章:
- 0
|
终于整理清楚了思路。 不知道对不对。
void *p = ∑
int *pp = &*p;
/*
* 能通过编译, 理由如下:
* 6.5.3.2 Address and indirection operators
* 4 The unary * operator denotes indirection. If the operand points to a function, the result is a function designator; if it points to an object, the result is an lvalue designating the object. If the operand has type ‘‘pointer to type’’, the result has type ‘‘type’’ . ===> 根据此条规则(大虾也说过了), *p是合法的, *p 的类型就是void.
*
* 1 The operand of the unary & operator shall be either a function designator, the result of a [] or unary * operator . ==> '&' 的操作数可以是[]运算符 或 *运算符构成的表达式, 16楼提到了下面的规则:
* 6.3.2.2 void
* 1 The (nonexistent) value of a void expression (an expression that has type void) shall not be used in any way.
* 我个人理解: &*p 表达式中, '&'操作符并没有使用到*p的值, 所以并没有违反上面那条规则.(不知道我这种理解是否正确)
*
* int *pp = ...; 由于赋值运算符'='的右操作数是(void *)型, 根据下条规则, (void *)指针可以转换成任意一种类型的指针. 因此可以直接赋值.
* 6.5.16.1 Simple assignment
* 1 One of the following shall hold)
-- one operand is a pointer to an object or incomplete type and the other is a pointer to a qualified or unqualified version of void, and the type pointed to by the left has all the qualifiers of the type pointed to by the right;
*
*/
int a[] = {1, 2, 3};
printf("%p\n", &2[a]);
/*
* 2[a] 等价于a[2], 则printf 打印的是a[2]的地址.
*/
非常感谢各位大虾提供的思路. 头一次拜读了那么多页ISO C文档。  |
|