InterviewSolution
Saved Bookmarks
| 1. |
Where and how can you use a private constructor? |
|
Answer» Private constructor is used if you do not want other classes to instantiate the object and to prevent subclassing.T |
|