Java String equals()

The java string equals() method compares the two given strings based on the content of the string. If any character is not matched, it returns false. If all characters are matched, it returns true.

The String equals() method overrides the equals() method of Object class.


Internal implementation


Signature


Parameter

anotherObject : another object i.e. compared with this string.


Returns

true if characters of both strings are equal otherwise false.


Overrides

equals() method of java Object class.


Java String equals() method example

Test it Now
true
false
false

Java String equals() Method Example 2

The equals() method compares two strings and can be used in if-else control structure.

true
both strings are unequal

Java String equals() Method Example 3

Let's see one more example to test the equality of string present in the list.

Mukesh is present




Contact US

Email:[email protected]

String equals()
10/30