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.
Signature
Parameter
anotherObject : another object i.e. compared with this string.
Returns
true if characters of both strings are equal otherwise false.
Overrides
Java String equals() method example
equals() method of java Object class.
true false false
No comments:
Post a Comment