摘要: /** * * 二维数组测试 * @author lizhibiao * @date 2018/12/3 15:09 */public class TwoArr{ public static void main(String[] args) { //二维数组 int[][] twoArr = new int[2][]; //一维数组 ... 阅读全文
posted @ 2018-12-03 19:26 lizb0907 阅读(862) 评论(0) 推荐(0)
摘要: /** * hashMap排序 * @author lizhibiao * @date 2018/12/3 11:47 */public class TestHashMapCollections{ public static void main(String[] args) { Map map = new HashMap(); map.put("王二", 8... 阅读全文
posted @ 2018-12-03 19:24 lizb0907 阅读(23463) 评论(1) 推荐(1)