fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. System.out.println("abc" == "abc");
  6. System.out.println(new String("abc") == new String("abc"));
  7. }
  8. }
Success #stdin #stdout 0.09s 27712KB
stdin
Standard input is empty
stdout
true
false