No Exception while type casting with a null in java

String x = (String) null;

Why there is no exception in this statement?

String x = null;
System.out.println(x);

It prints null. But .toString() method should throw a null pointer exception.

10 Answers
10

Leave a Comment