What's the difference between:
char * const
and
const char *
|
|
If you meant the difference between
and
then the difference is that The first, the value being pointed to can't be changed but the pointer can be. The second, the value being pointed at can change but the pointer can't (similar to a reference). There is also a
which is a constant pointer to a constant char (so nothing about it can be changed). Note: The following two forms are equivalent:
and
The exact reason for this is described in the C++ standard, but it's important to note and avoid the confusion. I know several coding standards that prefer:
over
(with or without pointer) so that the placement of the |
||||
|
|
To avoid confusion, always append the const qualifier.
|
|||
|
|
|
See also: |
|||||
|
|
|
||||
|
|
|
So these two are the same:
they define pointers to a This:
defines a |
|||
|
|
|
First one is a syntax error. Maybe you meant the difference between
and
In that case, the first one is a pointer to data that can't change, and the second one is a pointer that will always point to the same address. |
|||
|
|
|
1) const char* is basically a character pointer which is pointing to a constant value 2) char* const is refer to character pointer which is constant, but the location it is pointing can be change. 3) const char* const is combination to 1 and 2, means it is a constant character pointer which is pointing to constant value. 4) const *char will cause a compiler error. it can not be declared. 5) char const * is equal to point 1. the rule of thumb is if const is with var name then the pointer will be constant but the pointing location can be changed , else pointer will point to a constant location and pointer can point to another location but the pointing location content can not be change. |
|||
|
|
|
I presume you mean const char * and char * const . The first, const char *, is a pointer to a constant character. The pointer itself is mutable. The second, char * const is a constant pointer to a character. The pointer cannot change, the character it points to can. And then there is const char * const where the pointer and character cannot change. |
|||
|
Another thumb rule is to check where const is:
|
|||
|
|
|
Here is a detailed explanation with code
|
||||
|
|