我想舉個例子。如果我不知道數組會有多少元素?
import java.util.Scanner;
public class ana
{
public static void main(String[] args) {
int[] array = new int[9]; // create array that have "9" elements
}
}
上面的例子的數組有9個元素,但我想創建無限數組。 如果我想這個時候我寫PHP我寫這篇文章的代碼:
<?php
$example = array();
$example[] = 15; // auto numbering. PHP don't want number of array's element.
$example[] = 20;
?>
又是什麼意思呢?
Auto[] array = {new Auto()};
我希望我明確自己。
來吧。自JDK 1.2以來,ArrayList應該優於Vector。我們在JDK 7. – 2012-02-18 13:08:39
@JBNizet這就是爲什麼我upvoted你的答案。 – 2012-02-18 13:16:20