摘要: List list = new ArrayList<>(); list.add(1); list.add(2); //方法1: Iterator it = list.iterator(); while (it.hasNext()) { int str = (int) it.next(); Syste 阅读全文
posted @ 2023-02-06 14:38 学习者显示名称已被使用 阅读(13) 评论(0) 推荐(0) 编辑