What is the cost of sizeof?
I would expect:
- sizeof(someclass) can be known at compile time
- sizeof(someStaticArray) can be known at compile time
- sizeof(someDynamicArray) can not be known at compile time
So how does that last case work?
|
What is the cost of sizeof? I would expect:
So how does that last case work? |
|||||||||
|
|
The There is at least one exception to this rule: variable length arrays. The size of these arrays are computed at runtime and that size is reused for any Please note there is a difference between a variable length array and a dynamic one. Variable length arrays were added in C99 and they do support the sizeof operator |
|||||||||||||||
|
|
|
|||
|
|
|
In C++, the last case does not exist. If you want something like a dynamic array in C++, you generally use Edit (since the question has been retagged as C): C (since C99) provides both Variable Length Arrays (VLAs) and Flexible Array Members (FAMs). For a variable length array, For a |
||||
|
|
|
Since a dynamic array is referred to by a pointer, |
||||
|
|
|
|
|||
|
|
|
|
|||
|
|
|
There is zero runtime cost. In the case of dynamically allocated memory, sizeof gives the size of the static pointer object, not the dynamically allocated memory. |
|||
|
|