objects

Java TreeSet class

TreeSet is a widespread Java implementation of the SortedSet interface that employs a Tree for storage. Whether an explicit comparator…

3 years ago

Serialization and Deserialization in Java

An object's state can be transformed into a byte stream through a process known as serialization. Deserialization is the opposite…

3 years ago

Strings in Java

Strings are Objects in Java that are internally backed by a char array. They are immutable because arrays are immutable…

3 years ago

OOPs in Java

What is OOPs? Object-Oriented Programming is a methodology or paradigm for designing a program using classes and objects.  Many concepts, such…

3 years ago

Java object creation methods

Everything revolves around the object in Java, which is an object-oriented language. An object represents a class's runtime entity and…

3 years ago