PPT Slide
/* in class SwapTester’s main method (cont’d) . . . */
p = new MyObject ("hello");
q = new MyObject ("hello"); r = q;
s = new MyObject ("world");
System.out.println ("p=" + p + " q=" + q + " r=" + r + " s=" + s);
System.out.println ("p==q is " + (p==q));
System.out.println ("q==r is " + (q==r));
System.out.println ("p=" + p + " q=" + q + " r=" + r + " s=" + s);
System.out.println ("p=" + p + " q=" + q + " r=" + r + " s=" + s);
p=hello q=hello r=hello s=world
p=hello q=hello r=hello s=world
p=world q=hello r=hello s=hello