6. แยกย่อย

The Camtasia Studio video content presented here requires JavaScript to be enabled and the latest version of the Macromedia Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Flash Player by downloading here.

 
รหัสที่ 6-17  ตัวอย่างโปรแกรมใช้วงวนเรียกเมท็อดซ้ำๆ
public class MaiJeng3 {
  public static void main(String[] args) {
    int i = 0;
    while (true) {
      b(i);
      i++;
    }
  }
  private static void b(int i) {
    System.out.println(i);
  }
}
©2009 S.Prasitjutrakul