Top "Marker-interfaces" questions

An empty interface in java is called marker interface.

Marker Interfaces in Java?

I was being taught that Marker interface in Java is an empty interface and is used to signal to compiler …

java design-patterns marker-interfaces
What is the use of marker interfaces in Java?

When there is nothing to implement in the marker interfaces like Serializable What is the use of implementing it?

java annotations marker-interfaces
Java: What can and what can't be serialized?

If the Serializable interface is just a Marker-Interface that is used for passing some-sort of meta-data about classes in java …

java serialization marker-interfaces
Why class need to implement serializable marker interface for serialization?

Techincally i know why class need to implement serializable . Reason is writeObject method of ObjectOutputStream internally checks the "instance of …

java serialization marker-interfaces