+1 vote
in JAVA by
How to compare two strings in java

1 Answer

0 votes
by
"// These two have the same value

new String(""test"").equals(""test"") // --> true

// ... but they are not the same object

new String(""test"") == ""test"" // --> false

// ... neither are these

new String(""test"") == new String(""test"") // --> false

// ... but these are because literals are interned by

// the compiler and thus refer to the same object

""test"" == ""test"" // --> true "

Related questions

0 votes
asked Mar 19, 2020 in PHP by DavidAnderson
0 votes
asked Oct 13, 2020 in JAVA by SakshiSharma
...