码迷,mamicode.com
首页 > 其他好文 > 详细

第七章:方法。ITEM43:返回零长度的数组或者集合,而不是null 。

时间:2014-08-27 16:24:27      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   div   cti   log   

 1 private final List<String> l = ... ;
 2         
 3         public String[] getString() {
 4             if(l.size() == 0)
 5                 return null ;
 6         }
 7         
 8         String[] s = getString();
 9                 //对于一个返回null而不是零长度数组或者集合的方法,每次都要判断!=null
10         if(s != null && Arrays.asList(s).contains("a")){
11             //dosomething
12         }
1 private final List<String> l = ... ;
2         
3         public static final String[] EMPTY_STRING_ARRAY = new String[0] ;
4         public String[] getString() {
5                 return l.toArray(EMPTY_STRING_ARRAY) ;
6         }
1 //返回list的情况
2 public List<String> getString() {
3             if(l.isEmpty())
4                 return Collections.emptyList() ;
5             else
6                 return new ArrayList<String>(l) ;
7         }

 

第七章:方法。ITEM43:返回零长度的数组或者集合,而不是null 。

标签:style   blog   color   os   io   ar   div   cti   log   

原文地址:http://www.cnblogs.com/twoslow/p/3939489.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!