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
How do you reverse a string in java?
How does a for loop work java?
What exactly is java?
What is variable length arguments in java?
What checkbox method allows you to tell if a checkbox is checked?
What is difference between fileinputstream and filereader in java?
What are different types of arrays?
What does \ mean in regex?
Why are constructors used?
What is member in java?
What is role of void keyword in declaring functions?
What is a data structure java?
How does a for loop work?
Can we declare an interface as final?
What is hashtable and explain features of hashtable?