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-16  ตัวอย่างโปรแกรมที่มีการเรียกซ้ำ แต่มีปัญหา
public class Jeng3 {
  public static void main(String[] args) {
    a(0);
  }
  private static void a(int i) {
    System.out.println(i);
    a(i + 1);
  }
}
©2009 S.Prasitjutrakul