import java.util.Vector;
Vector vc = new Vector();
增加值的方法
vc.add(20); //0
vc.add(40); //1
vc.add(30); //2
取出值的方法vc.get(int index)
vc.get(0);
也可以排序,但須另使用Collections這個類別,程式碼如下
import java.util.Collections;
Collections.sort(vc);
輸出結果,以上面的例子為例:20,40,30 => 20,30,40
沒有留言:
張貼留言