判断数组 为什么判断不等于空了还要判断大于0,难道还能小于0吗
int [] a=new int[0];
System.out.println(a.length);
输出为0
String[] strs = {}; 有可能 strs.length=0 所以得判断大于0