我们可以将对象数组索引值分配给java中的任何整数类型变量吗?

时间:2017-09-17 21:01:37

标签: java

void bubbleSort(Customer[] c) {
    int temp = 0;
    temp = c[0]; // problem here
}

1 个答案:

答案 0 :(得分:-1)

因为temp是整数类型,而c[0]是客户类型