InterviewSolution
Saved Bookmarks
| 1. |
What is the memory consumption of a class? |
|
Answer» A class has no memory consumption. Classes are simply blueprints for object creation. Now that objects are created, a class member and method are actually initialized, so memory is utilized. |
|