show/hide this revision's text 2 added 2 characters in body

Comparing equality of objects using == instead of .equals() -- which works behaves completely differently for primitives.

This gotcha ensures newcomers are befuddled when "foo" == "foo" but new String("foo") != new String("foo").

show/hide this revision's text 1

Comparing equality of objects using == instead of .equals() -- which works completely differently for primitives.

This gotcha ensures newcomers are befuddled when "foo" == "foo" but new String("foo") != new String("foo").