长度为0的数组和 null
长度为0的数组 int[] arr = new int[0],也称为空数组,虽然arr长度为0,但是依然是一个对象
null数组,int[] arr = null;arr是一个数组类型的空引用。
1. 编写api方法,进行参数校验时,不要漏掉空数组的情况
比如下面这个计算递增子序列最大长度的方法,要考虑空数组的情况。
public class Solution { public int lengthOfLIS(int[] nums) { if (nums == null || <span style="color:#ff0000;">nums.length == 0</span>) { return 0; } int size = nums.length; int[] itemLengthArray = new int[size]; int currentMax = 0; int outMax = 1; for (int k = 0 ; k < size; ++k) { itemLengthArray[k] = 1; } for (int i = 1; i < size; ++i) { for (int j = 0; j < i; ++j) { if (nums[j] < nums[i]) { if (currentMax < itemLengthArray[j]) { currentMax = itemLengthArray[j]; } } } itemLengthArray[i] = currentMax + 1; currentMax = 0; outMax = outMax > itemLengthArray[i] ? outMax : itemLengthArray[i]; } return outMax; } }
2. Effective Java第43条(返回零长度的数组或者集合,而不是null)清楚的说明了零长度或者集合的好处,可以避免调用api的客户端进行不必要的非null判断
public String[] getIpList() { if (ipList.size != 0) { ...... } return null; }
由于该方法可能返回空,客户端调用上述方法没次都需要进行非null判断。
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
- 上一篇:没有了
- 下一篇:没有了