書寫方法在[位置]變量中存儲的位置將[]插入到數字[]中。將數組插入另一個數組
public boolean insertArray(int location, double a[])
{
if (length != MAX_CAPACITY)
{
numbers[location] = a[];
length++;
return true;
}
return false;
}
是否可以通過數組?
「數字」的類型是什麼? – shmosel
使用循環。你可以使用'arraycopy',但我想這只是練習目的。 – Yoda
當我們不知道問題的參數時,怎麼會有這麼多的答案? – shmosel