谁能解释一下,为什么我必须使用这个代码模式?
// 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]
. 好像我在写多余的代码。可以跳过这些步骤之一吗?