InterviewSolution
Saved Bookmarks
| 1. |
Can You Instantiate Math Class? |
|
Answer» No. It cannot be instantiated. The class is FINAL and its constructor is PRIVATE. But all the methods are static, so we can use them WITHOUT INSTANTIATING the Math class. No. It cannot be instantiated. The class is final and its constructor is private. But all the methods are static, so we can use them without instantiating the Math class. |
|