InterviewSolution
Saved Bookmarks
| 1. |
What Is An Adaptor Class Or Wrapper Class In C++? |
|
Answer» A CLASS that has no functionality of its own is an Adaptor class in C++. Its member functions hide the USE of a third party software component or an object with the non-compatible INTERFACE or a non-object-oriented IMPLEMENTATION. A class that has no functionality of its own is an Adaptor class in C++. Its member functions hide the use of a third party software component or an object with the non-compatible interface or a non-object-oriented implementation. |
|