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-15  ผลของการเรียกเมท็อดที่โยนสิ่งผิดปกติ
public class Test {
  public static void main(String[] args) {
    a();
    System.out.println("----a----");
  }
  public static void a() {
    b();
    System.out.println("----b----");
  }
  public static void b() {
    String t = int2text(100000000);
    System.out.println(t);
  }
  public static int2text(int i) {
    if (i < 0 || i > 9999999) {
      throw new IllegalArgumentException("ค่า " + i + " อยู่นอกช่วง");
    }
    ...
©2009 S.Prasitjutrakul