// 数组为null和数组的长度==0的区别
int[] arr = new int[0];
int[] arr1 = null;
// 两者之间的区别在于
// null 是 数组类型的空引用
// 长度为0 是指一个空数组
// 所以,数组只要被new出来,他就不等于null,他只是长度为0而已!
标签:区别,int,数组,new,长度,null From: https://www.cnblogs.com/aftdxml/p/17347578.html
// 数组为null和数组的长度==0的区别
int[] arr = new int[0];
int[] arr1 = null;
// 两者之间的区别在于
// null 是 数组类型的空引用
// 长度为0 是指一个空数组
// 所以,数组只要被new出来,他就不等于null,他只是长度为0而已!
标签:区别,int,数组,new,长度,null From: https://www.cnblogs.com/aftdxml/p/17347578.html