
Java – Serializable v/s Externalizable
In this article, we will discuss difference between Serialization and Externalization in detail i.e.; Serializable v/s Externalizable The main difference between these serializing concepts is Read More
In this article, we will discuss difference between Serialization and Externalization in detail i.e.; Serializable v/s Externalizable The main difference between these serializing concepts is Read More
In this article, we will discuss externalizable interface with an example to save and restore an object in a customized way Also, we will discuss Read More
In this article, we will discuss Serialization with Inheritance i.e.; IS-A relationship with inheriting class in detail It’s an easy choice, when both super-class & Read More
In this article, we will discuss Serialization with Aggregation i.e.; serializing class contains reference to other classes. It forms a HAS-A relationship There are 2 Read More
In this article, we will discuss Order of Serialization and De-Serialization and also we will cover below programs Why it is important to know order Read More
In this article, we will discuss how can we serialize and de-serialize member variables with transient modifier or keyword In earlier articles, we have seen Read More
In this article, we will discuss what happens to final data member when transient keyword or modifier applied during serialization process This is one of Read More
In this article, we will discuss what happens to static data member when transient keyword or modifier applied during Serialization process This is one of the Read More
In this article, we will discuss transient keyword or modifier with serialization in detail Whenever, we talk about Serialization then definitely there will be loads Read More
In this article, we will discuss the important things we should know about java.io.Serializable interface in detail 1. Serializable interface: Present in java.io package Fully Read More
In this article, we will discuss Java serialization and de-serialization in detail 1. Serialization: The process of writing a state of an Object to a Read More
In this article, we will discuss difference between CopyOnWriteArraySet and SynchronizedSet classes in detail i.e.; CopyOnWriteArraySet v/s SynchronizedSet Lets us move on and discuss key differences Read More
In this article, we will discuss difference between CopyOnWriteArraySet and HashSet classes in detail i.e.; CopyOnWriteArraySet v/s HashSet Lets us move on and discuss key differences Read More
In this article, we will discuss CopyOnWriteArraySet class – the implementation class for Set interface in detail This is the thread-safe version of Set and Read More
In this article, we will discuss difference between CopyOnWriteArrayList and SynchronizedList classes in detail i.e.; CopyOnWriteArrayList v/s SynchronizedList Lets us move on and discuss key differences Read More
In this article, we will discuss difference between CopyOnWriteArrayList and ArrayList classes in detail i.e.; CopyOnWriteArrayList v/s ArrayList Lets us move on and discuss key differences Read More
In this article, we will discuss what happens when element is removed from CopyOnWriteArrayList and ArrayList while iterating using Iterator i.e.; remove() operation with CopyOnWriteArrayList; Read More
In this article, we will discuss how can we achieve both read (iterate) and modify (remove/add) operations simultaneously by 2 different threads using CopyOnWriteArrayList which Read More
In this article, we will discuss CopyOnWriteArrayList class – the implementation class for List interface in detail This is the thread-safe version of ArrayList, where Read More
In this article, we will discuss difference between SynchronizedMap and ConcurrentHashMap classes in detail i.e.; ConcurrentHashMap v/s SynchronizedMap Lets us move on and discuss key differences Read More