InterviewSolution
Saved Bookmarks
| 1. |
What do you understand by marker interfaces in Java? |
|
Answer» Marker interfaces, also KNOWN as tagging interfaces are those interfaces that have no methods and CONSTANTS defined in them. They are there for helping the COMPILER and JVM to get run time-related INFORMATION regarding the OBJECTS. |
|