Board logo

標題: 陣列的長度 [打印本頁]

作者: tonyh    時間: 2014-7-12 14:29     標題: 陣列的長度

本帖最後由 tonyh 於 2014-7-12 15:12 編輯

利用length屬性, 可取得陣列的長度, 即該陣列包含了幾位成員.
  1. public class ch39
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          int a[]={1,2,3,4};
  6.          int b[][]={{1,2,3,4},{1,2,3,4},{1,2,3,4}};
  7.          int c[][][]={{{1,2,3,4},{1,2,3,4},{1,2,3,4}},{{1,2,3,4},{1,2,3,4},{1,2,3,4}}};
  8.          System.out.println(a.length);    //4
  9.          System.out.println(b.length);    //3
  10.          System.out.println(c.length);    //2
  11.     }
  12. }
複製代碼

作者: 張瀚仁    時間: 2014-7-12 15:00

  1. public class ch37
  2. {
  3.     public static void main(String args[])
  4.     {

  5.          int n[]={{90,85,85},
  6.                     {70,75,80},
  7.                     {80,95,80},
  8.                     {70,95,75}};
  9.          int a[]{}=({5,5},{5,1},{1,5});
  10.          int b[][][]={{4},{5}}
  11.          System.out.println(n.length);
  12.          System.out.println(a.length);
  13.          System.out.println(b.length);

  14.     }
  15. }
複製代碼

作者: 林以諾    時間: 2014-7-12 15:02

  1. public class ch39
  2. {
  3.     public static void main(String args[])
  4.     {      
  5.          a[]={1,2,3,4};
  6.          a[][]={{1,2,3,4},{1,2,3,4},{1,2,3,4}};
  7.          a[][][]={{{1,2,3,4},{1,2,3,4},{1,2,3,4}},{{1,2,3,4},{1,2,3,4},{1,2,3,4}}};
  8.          System.out.println(n.length);
  9.          System.out.println(a.length);
  10.          System.out.println(b.length);
  11.     }
  12. }
複製代碼

作者: 黃崇維    時間: 2014-7-15 18:11

  1. public class ch37
  2. {
  3.     public static void main(String args[])
  4.     {

  5.          int n[]={{90,85,85},
  6.                     {70,75,80},
  7.                     {80,95,80},
  8.                     {70,95,75}};
  9.          int a[]{}=({5,5},{5,1},{1,5});
  10.          int b[][][]={{4},{5}}
  11.          System.out.println(n.length);
  12.          System.out.println(a.length);
  13.          System.out.println(b.length);

  14.     }
  15. }
複製代碼

作者: 劉泳鱔    時間: 2014-7-15 18:12

  1. public class ch37
  2. {
  3.     public static void main(String args[])
  4.     {

  5.          int n[]={{90,85,85},
  6.                     {70,75,80},
  7.                     {80,95,80},
  8.                     {70,95,75}};
  9.          int a[]{}=({5,5},{5,1},{1,5});
  10.          int b[][][]={{4},{5}}
  11.          System.out.println(n.length);
  12.          System.out.println(a.length);
  13.          System.out.println(b.length);

  14.     }
  15. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2