PPT Slide
/* in class SwapTester’s main method (cont’d) . . . */
b = new String ("hello");
System.out.println ("a=" + a + " b=" + b + " c=" + c);
System.out.println ("a==hello is " + (a=="hello"));
System.out.println ("b==hello is " + (b=="hello"));
System.out.println ("a==b is " + (a==b));
System.out.println ("a.equals(b) is " + (a.equals(b)));
System.out.println ("b==c is " + (b==c));
System.out.println ("b.equals(c) is " + (b.equals(c)));