What does const at top level qualifier mean in C++? and what are other levels?
For example:
int const *i;
int *const i;
int const *const i;
|
|
A top level const qualifier affects the object itself. Others are only relevant with pointers and references. They do not make the object const, and only prevent modification through a path using the pointer or reference. Thus:
This is not a top level const, and none of the objects are immutable.
The expression But
This time, there is a top level const on To give the pointer top level const, you'd write:
In this case, |
|||||||||
|
|
The first says that the pointer Whenever |
|||
|
|