JAVA主要用args

时间:2017-01-10 07:09:41

标签: java main

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
  }

}

1 个答案:

答案 0 :(得分:0)

在main方法中,参数永远不会为空。

在您的对象中,您将其定义为null,因此它将为null