摘要: 增强for循环 用于遍历数组或集合,进行进一步操作 public class ForDemo01 { public static void main(String[] args) { int[] numbers = {1, 2, 3, 4, 5}; for (int num : numbers) { 阅读全文
posted @ 2020-08-21 11:48 CrazyGod 阅读(121) 评论(0) 推荐(0)