Can an interface extend the Serializable interface?

java, serialization

Solution

Yes, you can extend the `Serializable` interface. If you do, all classes that implement the new subinterface will also be implementing `Serializable`.

Problem

Is it possible to create an interface extending the Serializable interface? If yes, will that extended interface behave like the Serilizable interface? If not, why?

Original source