java中的arraylist,vector,linkedlist使用
2013-12-10 21:24 来源:www.chinab4c.com 作者:admin
java中的arraylist,vector,linkedlist使用
import java.util.*;
public class test{
public static void main(String[] args) {
List<String> l = new LinkedList<String>();
l.add("a");
l.add("b");
System.out.println(l);
String[] x = l.toArray(new String[0]);
for (String m:x) {
System.out.println(m);
}
Vector a = new Vector();
a.add(1);
a.add(2);
System.out.print(a);
Iterator xx = a.iterator();
while(xx.hasNext()){
System.out.println(xx.next());
}
System.out.println(l.get(0));
ArrayList<String> y = new ArrayList<String>();
y.add("x");
y.add("xx");
String[] xxxx = y.toArray(new String[0]);
for(String m:xxxx){
System.out.println(m);
}
}
}
来源:http://www.chinab4c.com
最近更新
常用插件
- ecshop购物车功能改进[插件
ecshop购物车功能改进[插件套餐]主要是我们最近开发工作和开发项目中。...
- ecshop红包修改成满多少减
我们在长期使用ecshop的时候,我们可以发现。ecshop的红包是一个非常强...
- ecshop降价通知登记插件
ecshop降价通知登记插件,主要是为了方便某些客户,对商品价格要求比...
- ecshop分类树中统计商品数
最近忙于开发其他项目,在不少朋友不断要求和催促的情况下,做出了该小...
- ecshop通用红包编码
很多时候,为了结合促销,必须扩展一下ecshop的红包功能。ecshop的红包...