7. แถวลำดับ

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.

 
รหัสที่ 7-16  เมท็อดขยายขนาดของอาเรย์เป็นสองเท่า
  public static int[] doubleCapacity(int[] d) {
    int[] a = new int[2*d.length];
    for (int i=0; i<d.length; i++) {
      a[i] = d[i];
    }
    return a;
  }
©2009 S.Prasitjutrakul