当前位置: 代码迷 >> J2SE >> 面试题求解,该怎么处理
  详细解决方案

面试题求解,该怎么处理

热度:92   发布时间:2016-04-23 21:34:38.0
面试题求解
When calling the main() method of a Java class, if we do not provide any arguments on the command line, then the string array of main() method – will it be empty or null?

------解决方案--------------------
Empty array,猜的。
这种问题比较偏,测试下就知道了。
------解决方案--------------------
System.out.println(args.length);
打印0
------解决方案--------------------
Print args.length.
  相关解决方案