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



Hey buddy.. can you please tell me about the use of marker interface? And is there any link between..

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

Hey buddy.. can you please tell me about the use of marker interface? And is there any link between..

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

Post New Answer

More Core Java Interview Questions

Map map = new HashMap(2); map.add(“1”,”one”); map.add(“2”,”two”); map.add(“3”,”three”); What will happen at this line?

5 Answers   Rolta,


what r advatages of websphere? & how to deploy?

0 Answers   Saksoft,


What is structure of java heap? What is perm gen space in heap?

0 Answers  


What access modifiers can be used for variables?

0 Answers  


What is difference between printf and scanf?

0 Answers  






Which are thin and thicK wrapper Class's in Java?

1 Answers  


Say any two properties in beans?

0 Answers  


What is the main purpose of serialization in java?

0 Answers  


What is intern method in java?

0 Answers  


What is main method?

0 Answers  


Explain access specifiers?

0 Answers   Thomson Reuters, Virtusa,


Why hashset is used in java?

0 Answers  


Categories