I'm saving string values in an array one at a time so I cannot initialize the array with the values all at once. After I'm done with the array I need to pass it to another class that is expected a String
array.
Normally I would use a List
but the end result is expecting an Array so I stuck with the Array. I'm having second thoughts though because maybe it would have better performance if I used a List then when I'm finished filling up the List
I could use List.toArray
and get the Array that way? Here is majority of the Array code I wrote that takes one argument at a time and adds it to the Array,
public String[] addArgument(String[] arguments, String arg) {
String[] temp = new String[arguments.length + 1];
for(int i=0; i<arguments.length; i++)
temp[i] = arguments[i];
temp[arguments.length] = arg;
arguments = temp;
temp = null;
return arguments;
}
addArgument(...)
\$\endgroup\$