What is Marker interface in java? and what is clone?
Answer Posted / koti
Marker Interface:
Marker interface may be containing
methods,may not be containing methods.
Whenever any interface having a special behavior that type
of interfaces are called as marker interfaces (or) indicator
interface (or) tagged interface.
If interfaces not containing the methods, implementation
provided by the JVM.the given interfaces are not containing
the methods.
Ex: 1.java.lang.Serializable
2.java.lang.Cloneable
3.java.rmi.Remote
4.java.util.EventHandling
5.java.util.RandomAccess.
If interfaces containing methods then JVM not providing the
implementation ,expecting the implementation from the
programmer.
Ex: 1.java.lang.Runnable having the Run().
2.java.io.Externalizable having two methods those are
(a) writeExternal()
(b) readExternal()
In this Externalizable super class is Serializable.
Serializable not containing the methods but Externalizable
containing the methods.How can we say marker interface not
containing methods.
when super class serialized sub class also serialized.Where
as sub class is serialized super class members are serialized.
clone:
clone is duplicate collection of objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What about anonymous inner classes in java?
Are there structures in java?
Why are constructors used?
Can an object subclass another object?
What does those terms actually mean included in the j.d.k i.6?
Can a static method be overridden in java?
What is static keyword in java?
How do you convert bytes to character in java?
Can we have multiple catch block for a try block?
Is set ordered in java?
Explain 5 features introduced in jdk 1.7?
What is the meaning of nullable?
What is * argv?
Is there a jre for java 11?
What is java life cycle?