标签: java
void bubbleSort(Customer[] c) { int temp = 0; temp = c[0]; // problem here }
答案 0 :(得分:-1)
因为temp是整数类型,而c[0]是客户类型
temp
c[0]