+ 1
== and .equals difference?
Sololearn told me to use == to test if something was equal to something. But a error happened so I asked chatgpt and it said I should use .equals? If(variable == (1)) is wrong! It was, if(variable.equals (1))
2 ответов
+ 4
== checks the equality of a reference in memory; equals() checks the equality of values.
provide the complete code and task instruction.
0
Be careful, if the variable is of type Object, such as String or Integer, then equals() is recommended.
// try
Integer x,y;
x=128; y=128;
System.out.println(x == y);
x=127; y=127;
System.out.println(x == y);