in
int salary() const { return mySalary; }
as far as I understand const is for this pointer, but I’m not sure. Can any one tell me what is the use of const over here?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Sounds like you’ve got the right idea, in C++ const on a method of an object means that the method cannot modify the object.
For example, this would not be allowed: