public class Wells {
String str[] = null;
static public void main(String args[]) {
Wells objWells = new Wells();
System.out.println(args.length);// we will NOT get null pointer exception WHY ?
System.out.println(objWells.str.length); // we will get null pointer exception
}
}
答案 0 :(得分:0)
在main方法中,参数永远不会为空。
在您的对象中,您将其定义为null,因此它将为null