Hey buddy.. can you please tell me about the use of marker
interface? And is there any link between marker interface
and factory methods?
Thanks in advance.
Answers were Sorted based on User's Feedback
Answer / namita
Marker Interface or sometimes called as Tagging interface
are empty interface which means it does not have any
methods. The use of the these interface is below
Like clonneable interface which is also a marker interface
when ur code implements clonneable interface the JVM will
come to know that you want to clone the object by calling
clone method(). Similalry serializable interface needs to
be implemented when you want to serialize the objects.
Their implementation is just to make aware the JVM.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / venkat
Marker Inferface doesnt consists any methods
it gives prior intemation to JVM to treat specially
Ex:Serialiazable
singleThread
Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between next () and nextline () in java?
What is an image buffer?
Does a class inherit the constructor of its super class?if it does, how can you hide that constructor? if it doesnot how can you call it from the sub class?
Can we compare two strings in java?
What is the size of boolean variable?
What is difference between path and classpath?
Can we nested try statements in java?
transaction attributes ?
How many bytes is a url?
How do you check if an arraylist is not empty?
what is object type casting? give some example with related?
How can we handle runtime exceptions? write one sample program? Can we write runtime exceptions beside the throws key word? if yes write sample program?