for (value:object) { continue; statement ; } while (statement) { continue; statement; } do { continue; statement ; } while (condition) ;
package com.java.myapp; public class MyClass { public static void main(String[] args) { String[] sCountry = new String[] { "Belgium", "France", "Italy", "Germany", "Spain" }; for(String country : sCountry) { if(country == "Italy") { continue; } // go to loop System.out.println("Value : " + country ); } System.out.println("==== End ====="); } }
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท