摘要: JDK8推荐使用 map.forEach((K, V) -> { System.out.println("Key : " + K); System.out.println("Value : " + V); }); foreach推荐使用 for (Map.Entry<String, String> 阅读全文
posted @ 2019-12-19 17:29 不死码农 阅读(158) 评论(0) 推荐(0) 编辑