[Java]陣列的特性
public class Main {
public static void main(String[] argv) {
int[] x; // x is a reference to int[]
x = new int[10]; // 利用new指令產生物件
for (int i = 0; i < x.length; i++) { // 此物件有一個object variable length,用以紀錄該陣列的長度
x[i] = i;
System.out.println(x[i]);
}
}
}
輸出畫面
0
1
2
3
4
5
6
7
8
9
...Program finished with exit code 0
Press ENTER to exit console.
沒有留言:
張貼留言