The equals() method is case-sensitive , meaning that the string “HELLO” is considered to be different from the string “hello”. The == operator does not work reliably with strings. Use == to compare primitive values such as int and char.
The equals() method is case-sensitive , meaning that the string “HELLO” is considered to be different from the string “hello”. The == operator does not work reliably with strings. Use == to compare primitive values such as int and char.