equals Method in Java

In Java equals() is inherited from the Object class. By default equals method checks for reference equality, whether two objects …

Read more

java.lang Package

The java.lang package is a fundamental and essential part of the Java Standard Library. It serves as the foundation of …

Read more

Static Nested Class

Sometimes we can declare an inner class with static modifiers such types of inner classes are known as static nested …

Read more

Inner Classes in Java

Sometimes we can declare a Class inside another Class such types of Classes are Called inner Classes. In Java 1.1v …

Read more