I have a property of a class, for example, const CFoo &bar() const, what does it mean?
Asked
Active
Viewed 300 times
3 Answers
13
The method bar returns a reference to a const CFoo (that's the const CFoo & part before bar), and calling this method does not modify any variables that are not marked as mutable (that's the const after the parentheses).
See also the C++ FAQ Lite entries What does "Fred const& X" mean? and What is a "const member function"?.
Mark Rushakoff
- 238,196
- 44
- 399
- 395
9
const CFoo& bar() const
---------- --------
^ ^
Returns a connst None of the member variables of the class to which bar
reference of CFoo. method belongs to can be modified.
unless member variable is prefexex with keyword mutable
aJ.
- 33,420
- 21
- 82
- 127
0
It's a const function (doesn't modify any non-mutable members of the object) member function that returns a reference to a const CFoo.
Jerry Coffin
- 455,417
- 76
- 598
- 1,067