说明:为了避免在数组和集合的获取上增加null的判断,同时也能减少不必要的空指针异常,通常会在业务返回零数组或空集合。
方法:
1、数组:
定义全局静态常量来减少内存开销:private static final int EMPTY_ARRAY = new int[0];,当然,也可以直接局部变量等等。
2、集合:
使用工具类Collections的emptyList()进行放回。
参考:
http://blog.csdn.net/tounaobun/article/details/8502160
https://www.codeproject.com/Articles/794448/Is-it-Really-Better-to-Return-an-Empty-List-Instea