Download the BYJU'S Exam Prep App for free GATE/ESE preparation videos & tests - Download the BYJU'S Exam Prep App for free GATE/ESE preparation videos & tests -

Difference between == and .equals() method in Java

== Vs. .equals(): Know What is the Difference Between == and .equals() method

The major difference between the == operator and .equals() method is that one is an operator, and the other is the method. Both these == operators and equals() are used to compare objects to mark equality. Let’s analyze the difference between the == and .equals() method in Java.

Ultimate Guide to Kickstart your GATE Exam Preparation
Download the e-book now

What is == in Java?

== is an operator that compares the memory or reference location of an object in the heap.

What is the .equal() Method in Java?

.equal() is a method that compares the actual content of the object.

Difference between == and .equals() method in Java

S.No. == Operator Equals() Method
1. == is considered an operator in Java. Equals() is considered as a method in Java.
2. It is majorly used to compare the reference values and objects. It is used to compare the actual content of the object.
3. We can use the == operator with objects and primitives. We cannot use the equals method with primitives.
4. The == operator can’t compare conflicting objects, so at that time the compiler surrenders the compile-time error. The equals() method can compare conflicting objects utilizing the equals() method and returns “false”.
5. == operator cannot be overridden. Equals() method and can be overridden.

Keep learning and stay tuned to BYJU’S to get the latest updates on GATE Exam along with GATE Eligibility CriteriaGATE 2024GATE Admit CardGATE Application FormGATE SyllabusGATE CutoffGATE Previous Year Question Paper, and more.

Also Explore,

Comments

Leave a Comment

Your Mobile number and Email id will not be published.

*

*