What is Marker interface in java? and what is clone?
Answer Posted / alok kumar ranjan
Marker interface is tagged interface with no methods inside
it.clone means copy of an object.
The marker interfaces are used to provide certain
functionality to classes you code. Take for
instance the Cloneable interface. This interface is
implemented by the JVM itself and allows
copies of objects to be created without the developer having
to write code for this purpose.
User written marker interfaces can also be used for
inheritance purposes.Marker Interfaces are
used to mark the capability of a class as implementing a
specific interface at run-time.
Some examples of marker interfaces are :-
1) Serializable
2) Cloneable
3) RandomAccess
4) SingleThreadModel
5) EventListner
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What does business logic mean?
Is java programming easy?
What is entry set in java?
Is null keyword in java?
If goto and const is reserve words than why it is not work in java?
What is a byte string?
How many threads does a core java have?
How to create an interface?
Can we inherit a class with private constructor?
What is difference between throw and throws ?
Is a class an object?
What are the advantages of user defined functions?
Define packages in java?
What’s the difference between unit, integration and functional testing?
What is the maximum size of array in java?