Java中定义数组,如果定义时不知道长度,该怎么办?

2024-11-27 06:26:23
推荐回答(1个)
回答1:

用Vector
Vector temp = new Vector();
temp.addElement(....);添加元素(变量,值等)
temp.size();取得大小;

String xx = temp.toString();转换为字符串;
String[] yy = new String[temp.size()];
yy = xx.split(",");转换为数组;