Skip to content

Instantly share code, notes, and snippets.

@rbe
Created September 26, 2012 09:21
Show Gist options
  • Save rbe/3786986 to your computer and use it in GitHub Desktop.
Save rbe/3786986 to your computer and use it in GitHub Desktop.
Object identity of User entity
public static void main(String[] args) {
User user1 = new User();
System.out.println(user1);
User user2 = new User();
System.out.println(user2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment