Marker interface means , interface which has no methods.Then
what is the necessity of its usage.I read "it tells the
compiler that it should be treated differently ". "It is
used to store state of an object". But still am not
clear.Please explain clearly.

Answers were Sorted based on User's Feedback



Marker interface means , interface which has no methods.Then what is the necessity of its usage.I r..

Answer / pratap jadaun

Marker interface means, interface which has no methods. Then
what is the necessity of its usage. I read "it tells the
compiler that it should be treated differently ".

but the marker interface is not only
used to store state of an object

below given list of marker interfaces

- java,lang.Cloneable
- java,io.Serializable
-java.util.EventListener
....

these are marker interfaces in java and each interface is
used for different purpose

A class implements the Cloneable interface to indicate to
the Object.clone() method that it is legal for that method
to make a field-for-field copy of instances of that class.


"Serializable is used to store state of an object".

Is This Answer Correct ?    1 Yes 1 No

Marker interface means , interface which has no methods.Then what is the necessity of its usage.I r..

Answer / ras

To store the state of object

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Why inputstreamreader is used in java?

0 Answers  


What is difference between Eclips and MyEclips?

3 Answers  


Differentiate jar and war files?

0 Answers  


What is a map? What are the implementations of map?

0 Answers  


Can we have multiple classes in a single file?

0 Answers  


What is the main purpose of serialization in java?

0 Answers  


Does A Class Inherit The Constructors Of Its Superclass?

0 Answers   Wipro,


What is a map in java?

0 Answers  


Are arrays immutable in java?

0 Answers  


Explain restrictions on using enum?

0 Answers  


Can we override static methods?

18 Answers   Bally Technologies,


why ,we are using jsp and html.which one is better?

2 Answers   Photon,


Categories