The const
at the end of the function signature means the method is a const member function, so both your methods are const member functions.
The const
at the beginning means whatever is being returned is const.
The first example is a const method returning a const reference to internal data, and is therefore const-correct.
The second is a const method returning non-const reference to internal data. This is not const-correct because it means you would be able to modify the data of a const object.
A call to a const a method cannot change any of the instance's data (with the exception of mutable data members) and can only call other const methods.
Const methods can be called on const or non-const instances, but non-const methods can only be called on non-const instances.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…