底层实现是使用了迭代器,简化了迭代器的书写
格式:
for(集合/数组的数据类型 变量名: 数组名/集合名) { // body } char[] chars = {'c', 'd', 'd', 'e'}; for(char c: chars) { System.out.println(c); }