【Java】增强的for流程时间:2021-03-25 15:18:55增强for循环语法: for(type element: array) { System.out.println(element); } 可遍历输出数组元素,但无法获取元素下标。 相关链接:增强for循环用法