Skip to content

Instantly share code, notes, and snippets.

@donchan922
Last active June 11, 2019 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donchan922/15592858a2ada6cd8a4c7196e052d37d to your computer and use it in GitHub Desktop.
Save donchan922/15592858a2ada6cd8a4c7196e052d37d to your computer and use it in GitHub Desktop.
public static void main(String[] args) {
Object object = null;
String.valueOf(object); // "null"という文字列を返す
object.toString(); // NullPointerExceptionが発生する
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment