vector能实现反向的遍历吗?
import java.util.Vector;
public class MyStack{
public static void main (String[] args) {
Vector theVector=new Vector();
for(int i=0;i<=9;i++){
Integer newInteger=new Integer(i);
theVector.addElement(newInteger);
}
System.out.println(theVector);
}
}
这个是正向遍历的,能实现反向的遍历吗?
------解决方案--------------------vector就是arraylist的线程安全版本,其实你就可以把arraylist当成数组(他底层就是用数组实现的),所以可以用反向遍历了
------解决方案--------------------