众所周知,如果您像arr[i]
在 C 中那样访问数组的元素,您也可以像访问该元素一样i[arr]
,因为这些只是归结为*(arr + i)
并且加法是可交换的。我的问题是为什么这适用于大于char
, 因为sizeof(char)
是 1 的数据类型,对我来说这应该只将指针提前一个字符。
也许这个例子更清楚:
#include <string.h>
#include <stdio.h>
struct large { char data[1024]; };
int main( int argc, char * argv[] )
{
struct large arr[4];
memset( arr, 0, sizeof( arr ) );
printf( "%lu\n", sizeof( arr ) ); // prints 4096
strcpy( arr[0].data, "should not be accessed (and is not)" );
strcpy( arr[1].data, "Hello world!" );
printf( "%s, %s, %s\n", arr[1].data, 1[arr].data, (*(arr+1)).data );
// prints Hello world!, Hello world!, Hello world!
// I expected `hold not be accessed (and is not)' for #3 at least
return 0;
}
那么为什么向数组指针加一会提前呢sizeof( struct large )
?