Hi can u pls tell me what is the use of marker interface.
Iknow what is marker interface but what ability will the
object get by implementing this.
Answer Posted / guest
Marker interface plays vital role even though it doesn't
contain any methods.The main purpose is to identify the
special objects from normal objects for example if you want
to serialize an object then how you will inform to the JVM
to serialize the particular object because there may be so
many objects available in JVM. In order to know which object
is to be serialized marker interfaces are used. When you
implement a marker interface the object will be tagged with
boolean property with that property JVM knows which object
should be serialized and which object should not be serialized.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are the different ways to handle exceptions?
What is a java list?
What is parseint?
What is static keyword in java?
Why enumeration is faster than iterator?
What is the difference between a break statement and a continue statement?
What is a substitution variable?
Tell me about your ability to work under pressure
What is function and method in java?
what is meant by abstract class?
What is the difference between the direct buffer and non-direct buffer in java?
What is bubble sort in java?
Is null == null in java?
Can a static block throw exception?
What is the difference between heap memory and stack memory?