fork download
  1. import java.lang.*;
  2.  
  3. class StringToStringEquality {
  4. public static void main(String[] args) {
  5. String helloWorld = "hello world";
  6. System.out.println(helloWorld == helloWorld.toString());
  7. }
  8. }
Success #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
true