What do the 2 consts in the following function definition’s argument imply?
void myFunction (MyClass* const* const myObj);
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.
Read it from right to left:
A (1) const (2) pointer to a (3) const (4) pointer to
MyClass. In other words, you cannot change the pointers, but theMyClassinstance remains mutable.