continue
示例:
for(int i in array) { println(i) continue }
在应用快速修复后:
for(int i in array) { println(i) }
有关更多信息,请参阅 Java 中的同一检查。