As a non-C/C++ expert I always considered square brackets and pointers arrays as equal.
ie :
char *my_array_star;
char my_array_square[];
But I noticed that when use in a structure/class they don’t behave the same :
typedef struct {
char whatever;
char *my_array_star;
} my_struct_star;
typedef struct {
char whatever;
char my_array_square[];
} my_struct_square;
The line below displays 16, whatever takes 1 byte, my_array_pointer takes 8 bytes.
Due to the padding the total structure size is 16.
printf("my_struct_star: %li\n",sizeof(my_struct_star));
The line below displays 1, whatever takes 1 byte, my_array_pointer isn’t taken in account.
printf("my_struct_square: %li\n",sizeof(my_struct_square));
By playing around I noticed that square brackets are used as extra space in the structure
my_struct_square *i=malloc(2);
i->whatever='A';
i->my_array_square[0]='B';
the line blow displays A:
printf("i[0]=%c\n",((char*)i)[0]);
the line blow displays B:
printf("i[1]=%c\n",((char*)i)[1]);
So I cannot say anymore that square brackets are equals to pointers. But I’d like to understand the reason of that behavior. I’m afraid of missing a key concept of that languages.
Arrays and pointers don’t behave the same because they’re not the same at all, it just seems that way.
Arrays are a group of contiguous items while a pointer is … well … a pointer to a single item.
That single item being pointed to may well be the first in an array so that you can access the others as well, but the pointer itself neither knows nor cares about that.
The reason that arrays and pointers often seem to be identical is that, in many cases, an array will decay to a pointer to the first element of that array.
One of the places this happens is in function calls. When you pass an array to a function, it decays into a pointer. That’s why things like the size of an array don’t pass through to the function explicitly. By that I mean:
The other thing you’ll find is that, while you can
plugh++andplugh--to your hearts content (as long as you don’t dereference outside of the array), you can’t do that with the arrayxyzzy.In your two structures, there’s a major difference. In the pointer version, you have a fixed size pointer inside the structure, which will point to an item outside of the structure.
That’s why it takes up space – your 8-byte pointer is aligned to an 8-byte boundary as follows:
With the “unbounded” array, you have it inside the structure and you can make it as big as you want – you just have to allocate enough memory when you create the variable. By default (ie, according to the
sizeof), the size is zero:But you can allocate more space, for example:
gives you a variable
twistywhich has awhatevercharacter and an array of ten characters calledmy_array_square.These unbounded arrays can only appear at the end of a structure and there can be only one (otherwise the compiler would have no idea where these variable length section began and ended) and they’re specifically to allow arbitrarily sized arrays at the end of structures.