📜  如何使用 for 循环在 java 中的数组中添加元素 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:44.882000             🧑  作者: Mango

代码示例2
// A better solution would be to use an ArrayList which can grow as you need it. 
// The method ArrayList.toArray( T[] a ) 
// gives you back your array if you need it in this form.

List where = new ArrayList();
where.add(element);
where.add(element);

// If you need to convert it to a simple array...

String[] simpleArray = new String[ where.size() ];
where.toArray( simpleArray );