for (value:object) { statement ; break; } while (statement) { statement; break; } do { statement ; break; } 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") { break; } System.out.println("Value : " + country ); } System.out.println("==== End ====="); } }
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท