InterviewSolution
Saved Bookmarks
| 1. |
What Is An Accessor In C++? |
|
Answer» An accessor is a class operation that does not modify the state of an object in C++. The accessor functions NEED to be DECLARED as CONST operations. An accessor is a class operation that does not modify the state of an object in C++. The accessor functions need to be declared as const operations. |
|