DEVFYI - Developer Resource - FYI

What is Externalizable interface?

Java Interview Questions and Answers (part 3)


(Continued from previous question...)

504. What is Externalizable interface?

Externalizable is an interface which contains two methods readExternal and writeExternal. These methods give you a control over the serialization mechanism. Thus if your class implements this interface, you can customize the serialization process by implementing these methods.

(Continued on next question...)

Other Interview Questions