2 out of 5 rated this helpful - Rate this topic

const (C++)

When modifying a data declaration, the const keyword specifies that the object or variable is not modifiable.

const declaration ;
member-function const ;

When following a member function's parameter list, the const keyword specifies that the function does not modify the object for which it is invoked.

For more information on const, see the following topics:

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.