摘要: 一:forEach() 循环遍历 List<Integer> costBeforeTax = Arrays.asList(100, 200, 300, 400, 500); costBeforeTax.forEach((x) -> System.out.println(x)); 运行结果: 100 阅读全文
posted @ 2019-04-02 17:07 刘维风 阅读(1270) 评论(0) 推荐(0) 编辑