摘要: import java.util.Collections; List<String> list = new ArrayList<String>(); list.add( "11" ); list.add( "12" ); list.add( "13" ); // 反转 list Collection 阅读全文
posted @ 2018-11-07 15:35 石头磨做绣花针 阅读(6717) 评论(0) 推荐(0)
摘要: public class CollectionsTest { public static void main(String[] args) { List<Integer> list = new ArrayList<Integer>(); list.add(34); list.add(55); lis 阅读全文
posted @ 2018-11-07 14:37 石头磨做绣花针 阅读(153) 评论(0) 推荐(0)