お世話になっております。
以下のプログラムを実行すると、エラーが発生してしまいます。
どうにも解決できないので、助けて下さい。
<プログラム>
public class Test {
public static void main(String[] args) {
String str = null;
System.out.println(str.length());
}
}
<エラー>
Exception in thread “main” java.lang.NullPointerException
at NullPointerExceptionSample.main(NullPointerExceptionSample.java:4)