Circlelist[] tempArr = new Circlelist[radix];
// for (Circlelist tempList : tempArr) {
// tempList = new Circlelist();
// }
for (int l = 0; l < tempArr.length; l++) {
tempArr[l] = new Circlelist();
}
为什么第一个增强for循环不能对tempArr数组的每个成员进行初始化,而第二个普通的for循环却可以