02 2018 档案

摘要:java.utils.Collections和Collection的区别和联系: Collection是集合的最高级接口,提供了集合对象基本操作的通用接口方法。Collection接口在Java 类库中有很多具体的实现,它的意义是为各种具体的集合提供了最大化的统一操作方式。 Collections是 阅读全文
posted @ 2018-02-09 15:35 maxudong 阅读(519) 评论(0) 推荐(0)
摘要:java 货币工具类 阅读全文
posted @ 2018-02-07 16:23 maxudong 阅读(1138) 评论(0) 推荐(0)
摘要:class Test { public static void main(String[] args) throws ParseException { Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); // after方法判断日期是否在日期参数后 ... 阅读全文
posted @ 2018-02-07 15:27 maxudong 阅读(134) 评论(0) 推荐(0)
摘要:package java.util; /** * This class provides a skeletal implementation of the Collection * interface, to minimize the effort required to implement this interface. * * To implement an unmodifiab... 阅读全文
posted @ 2018-02-06 14:50 maxudong 阅读(145) 评论(0) 推荐(0)