Java serializable Interface - What is serializable Interface?

What is serializable Interface?

If we want to transfer data over a network then it needs to be serialized. Objects cannot be transferred as they are. Hence, we need to declare that a class implements serializable so that a compiler knows that the data needs to be serialized.
How does thread synchronization occurs inside a monitor?
Java thread synchronization - A Monitor defines a lock and condition variables for managing concurrent access to shared data...
Difference between AWT and Swing
Java Swing - Classes in swing are not OS dependent. They don’t create peer components, so they are light weight unlike AWT...
Java Stream Tokenizer - What is meant by Stream Tokenizer?
Java Stream Tokenizer - The StreamTokenizer class takes an input stream and parses it into " allowing the to be read one at a tokensname...
Post your comment