InterviewSolution
Saved Bookmarks
| 1. |
What is static import in Java? Explain |
|
Answer» The static import feature allows the static member of a CLASS to be accessed directly without USING the qualified NAME. The biggest advantage of this feature is that less coding will be REQUIRED if you have access to a static member. |
|