摘要:
顺序集合(Sequenced Collections) 提供了几个新的接口,用于实现有序的集合。 在没有提供有序集合操作之前,我们进行集合的序列操作一般如下 First element Last element List list.get(0) list.get(list.size() - 1) D 阅读全文
摘要:
官网地址:https://documentation.red-gate.com/fd/quickstart-how-flyway-works-184127223.html 为什么选择flyway 官网给的信息: They allow you to: Recreate a database from 阅读全文
摘要:
ArrayList的sublist方法 返回的是创建的List的内部类SubList的对象 public List<E> subList(int fromIndex, int toIndex) { subListRangeCheck(fromIndex, toIndex, this.size); r 阅读全文