Skip to content

Instantly share code, notes, and snippets.

@tuphamphuong
Last active October 21, 2015 15:59
Show Gist options
  • Save tuphamphuong/c4affb1cc82830a0063f to your computer and use it in GitHub Desktop.
Save tuphamphuong/c4affb1cc82830a0063f to your computer and use it in GitHub Desktop.
Another way to check null in Java
public boolean equals(Object o){
if (!(o instanceof MyObject))
return false;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment