◄Up► ◄Contents► ◄Index► ◄Back► ─────C/C++ Language───────────────────────────────────────────────────────── Keyword: const Syntax: const declaration member-function const Summary: When modifying a data declaration, specifies that the object or variable is not modifiable. When following a member function's parameter list, specifies that the function doesn't modify the object for which it is invoked. See: ◄Constant Values► ◄Constant Member Functions► See also: volatile, define -♦-