
java
「已注销」
这个作者很懒,什么都没留下…
展开
-
java工具类
CollectionUtils判断集合是否为空及返回空的集合转载 2017-06-07 14:14:52 · 183 阅读 · 0 评论 -
for循环、list和map处理
list循环中remove/add元素 Iterator it = a.iterator(); while(it.hasNext()){ String temp = it.next(); if(删除元素的条件){ it.remove(); } }原创 2017-06-05 09:21:20 · 1693 阅读 · 0 评论 -
java时间比较方法
(1)Date的方法 cashCoupon.getCouponOnTime().after(curDate) || cashCoupon.getCouponOffTime().before(curDate)原创 2018-01-11 23:16:37 · 3055 阅读 · 0 评论