What is the meaning of const in declarations like these? The const confuses me.
class foobar
{
public:
operator int () const;
const char* foo() const;
};
|
1
|
What is the meaning of
|
|||
|
|
|
The const means that the method promises not to alter any members of the class. You'd be able to execute the object's members that are so marked, even if the object itself were marked
would be legal. See How many and which are the uses of “const” in C++? for more information. |
||||
|
|
|
The const qualifier means that the methods can be called on any value of foobar. The difference comes when you consider calling a non-const method on a const object. Consider if your foobar type had the following extra method declaration
The method "bar" is non-const and can only be accessed from non-const values.
The idea behind const though is to mark methods which will not alter the internal state of the class. This is a powerful concept but is not actually enforcable in C++. It's more of a promise than a guarantee. And one that is often broken and easily broken.
|
||||||
|
|
|
Blair's answer is on the mark. However note that there is a You might want to use this (for example) if you want an object to remember how many times a particular method is called, whilst not affecting the "logical" constness of that method. |
||
|
|
|
|
These const mean that compiler will Error if the method 'with const' changes internal data.
The test
Read this for more information |
|||
|
|
|
|
When you add the The
This will output
In the non-const method you can change the instance members, which you cannot do in the const version. If you change the method declaration in the above example to the code below you will get some errors.
This is not completely true, because you can mark a member as 'mutable' and a const method can then change it. It's mostly used for internal counters and stuff. The solution for that would be the below code.
which would output
|
||
|
|