摘要:
//判断集合是否为null List<String> list=new ArrayList<String>(); 方法一(数据量大,效率低): if(list!=null && list.size()>0){ } 方法二(数据量大,效率高): if(list!=null && !list.isEmp 阅读全文
posted @ 2016-01-25 10:15
heke_heke
阅读(343)
评论(0)
推荐(0)
2016年1月25日