Author name: thesatishsingh.com

Externalizable Interface : Important Interview Question

Externalizable Interface in Java Just like Serializable Interface, Externalizable Interface  is also used to serialize and deserialize the object. In serialization, it is always possible to save the total object to file, it is not possible to save a part of object, which may create performance problem. So, to overcome these problem Externalizable Interface was

Externalizable Interface : Important Interview Question Read More »

CopyOnWriteArrayList

CopyOnWriteArrayList in Java CopyOnWiteArrayList is implementation class of List Interface which is  a thread safe version of ArrayList. Hence more than one thread can happily operate on this.  While Iterating the List we can do the modification at the same time and we will not get any exception. It implements Serializable, Clonable & RandomAccess Interface. In

CopyOnWriteArrayList Read More »

Scroll to Top