任何人都可以解釋,爲什麼我必須使用這種代碼模式?C#初始化數組
// Create the array to store the CDs.
CD[] cdLibrary = new CD[20];
// Populate the CD library with CD objects.
for (int i=0; i<20; i++)
{ cdLibrary[i] = new CD(); }
我不明白爲什麼當我打電話new CD[20]
不會發生對象的數組初始化。看起來我正在編寫多餘的代碼。其中一個步驟可以跳過嗎?
你可能想要考慮使用列表而不是數組:http://stackoverflow.com/questions/434761/array-versus-listt-when-to-use-這個 –
User