概念 添加了改进的 for 循环(也称为 for-each),以便更轻松地迭代集合和数组。 实用程序 允许您以最佳方式浏览数组和对象集合的内容。 语法 改进后的for循环语法为: for (tipo elemento : coleção) { // bloco de código } 登录后复制 示例 使用改进的 for 循环迭代整数数组: int[] numeros = {1, 2, 3, 4, 5}; for (int numero : numeros) { System.out.println(numero); } 登录后复制 优点 更干净、更具可读性的代码。 迭代数组时出现索引错误的概率较低。 附加讨论 改进的 for 循环将在第 5 章介绍数组之后更详细地讨论。