- what does "T const *[]" as parameter type mean?
- What's the difference compared to "T *[]"?
- And as last question: why can't I pass a "T *[]" to a function that requires a "T const * []" as parameter?
Thank you for your help.
Tobias
Thank you for your help. Tobias |
|||
|
|
|
As a type in general, it's an array of pointers to a constant T. Try putting a name in it:
and apply the usual rules: [] binds tighter than *, so it's an
array. Then the * means that its an array of pointers, and
finally, they all point to a constant T. (As usual, As a parameter, of course, an array type is converted to a pointer type, so we end up with a pointer to a pointer to a constant T. This could also be written:
If you drop the const, you end up with:
which is not the same thing as And the reason you can't pass a
The fact that the declarations are written using [] is, in this case, misleading, since the rules for pointers to pointers still apply. |
|||
|
|
|
It's an array of pointers to constant objects of type T (i.e. the pointer can change, but you cannot call a non-const function, or modify a non-mutable data member on these objects). T *[] is an array of pointers to non-const ojects. You can't pass T *[] to a function requiring a T const *[] as it would invalidate the const correctness of the pointers. See here for more information. |
|||||||||||||||||
|