what is use of marker interface? give me good example?
Answer Posted / aravind
In java language programming, interfaces with no methods are
known as marker interfaces. Marker interfaces are
Serializable, Clonable, SingleThreadModel, Event listener.
Marker Interfaces are implemented by the classes or their
super classes in order to add some functionality.
Suppose the interface Clonable is neither implemented by a
class named Myclass nor it's any super class, then a call to
the method clone() on Myclass's object will give an error.
This means, to add this functionality one should implement
the Clonable interface. While the Clonable is an empty
interface but it provides an important functionality.
| Is This Answer Correct ? | 10 Yes | 6 No |
Post New Answer View All Answers
What is the use of bufferedreader?
Can memory leak in java?
Define a package.
Explain the selection sort algorithm?
What is the default access specifier for variables and methods of a class?
What is the difference between compile-time polymorphism and runtime polymorphism?
Which category the java thread do fall in?
What is dot operator?
How java is similar to c?
What is difference between fail-fast and fail-safe?
What are the advantages and disadvantages of reference counting in garbage collection?
Howto get an object that will perform date & time calculations then format it for output in some different locales with different date style.can ne1 tel me the answer of this question.pls
What are the three parts of a lambda expression? What is the type of lambda expression?
what is the difference between yielding and sleeping? : Java thread
Is a boolean variable?