- 论坛徽章:
- 0
|
原帖由 OwnWaterloo 于 2009-12-15 21:09 发表 ![]()
对, 标准就是在这里说得确实有点模糊。
标准要求: 如果结果指向数组内,或者指向数组之后一个,一定不能产生溢出。
如果不在这个范围,标准说的不是"可以溢出,允许溢出", 而是"无定义行为"。
那 ...
兄弟这个地方理解有点问题。
标准指的是不产生溢出,是指程序员明白他所做的操作的执行结果是什么。对于编译器来,说数组指针减1只是个指针运算而已,所以只要程序员明白运算后的指针指向的是合法的位置,包含合法的内容,则这个操作就是标准的做饭。
>>otherwise, the behavior is undefined
这里的otherwise指的是一旦产生溢出,则是无定义行为。标准通常将“behavior is undefined“表示为带来不可以预知结果的行为,主要强调的是操作的结果不可预知。
标准在这个问题上解释是清楚的。
我们以前内核里container_of的用法来说明在程序员控制的情况下,数组指针减是一个完全正确的操作
- #include <stdio.h>
- #include <stdlib.h>
- #include <stddef.h>
-
- #define container_of(ptr, type, member) ({ \
- const typeof(((type *)0)->member) * __mptr = (ptr); \
- (type *)((char *)__mptr - offsetof(type, member)); })
-
- struct test {
- int a;
- int b;
- char arr[10];
- int d;
- } x;
-
- int main() {
- printf ("%p, %p\n", &x, container_of (&x.arr, struct test, arr));
- }
复制代码 |
|