Why using the const keyword before and after method or function name?

C++

C++ Problem Overview


I have the following code in my application. Why do we use the const keyword with the return type and after the method name?

const T& data() const { return data_; }

C++ Solutions


Solution 1 - C++

const T& get_data() const { return data_; }
^^^^^

means it will return a const reference to T (here data_)

Class c;
T& t = c.get_data()             // Not allowed.
const T& tc = c.get_data()      // OK.


const T& get_data() const { return data_; }
                    ^^^^^

means the method will not modify any member variables of the class (unless the member is mutable).

void Class::get_data() const {
   this->data_ = ...;  // is not allowed here since get_data() is const (unless 'data_' is mutable)
   this->anything = ... // Not allowed unless the thing is 'mutable'
}

Solution 2 - C++

The const (and volatile) qualifier binds to the left. This means that any time you see const, it is being applied to the token to the left of it. There is one exception, however; if there's nothing to the left of the const, it binds to the right, instead. It's important to remember these rules.

In your example, the first const has nothing to the left of it, so it's binding to the right, which is T. This means that the return type is a reference to a const T.

The second const does have something to the left of it; the function data(). This means that the const will bind to the function, making it a const function.

In the end, we have a const function returning a reference to a const T.

Solution 3 - C++

The first const means the function is returning a const T reference.

The second one says that the method is not changing the state of the object. I.e. the method does not change any member variables.

Solution 4 - C++

const T& data() const { return data_; }

const after member function indicates that data is a constant member function and in this member function no data members are modified.

const return type indicates returning a constant ref to T

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionWaleed MohsinView Question on Stackoverflow
Solution 1 - C++stardustView Answer on Stackoverflow
Solution 2 - C++Collin DauphineeView Answer on Stackoverflow
Solution 3 - C++Ed HealView Answer on Stackoverflow
Solution 4 - C++shivakumarView Answer on Stackoverflow