I often see the following function declaration:
some_func(const unsigned char * const buffer)
{
}
Any idea why the const is repeated before the pointer name?
Thanks.
|
The first const says that the data pointed to is constant and may not be changed, the second says that the pointer itself may not be changed:
|
|||||||||
|
|
type declarations should(?) be read RTL.
|
|||
|
|
|
It's a constant pointer to a constant unsigned char. You can't change the pointer nor the thing it points to. |
|||
|
|
|
|
|||
|
|
|
In a declaration like |
|||
|
|
|
assuming const unsigned char * const Everyone is correct that its a const pointer to a const unsigned char. C++ types read mostly right to left unless there are any modifiers on the far left then these read left to right. |
||||
|
|
|
This makes it a const pointer to a const value, rather than a mutable pointer to a const value or a const pointer to a mutable value. |
|||
|
|
|
A couple of articles to help you understand const correctness in C++: |
|||
|
|
const unsigned char* const– wich Jan 28 '10 at 16:58const unsigned char * constis a constant pointer (*const) to an constant unsigned char (const unsigned char). – Thomas Matthews Jan 28 '10 at 18:36