我有一个包含以下构造函数的类
public Customer()
{
lastName = "???";
firstName = "???";
customerID = 0;
matineeTickets = 0;
normalTickets = 0;
totalCost = 0.0;
}
在一个单独的类中,我需要使用Customer对象来返回存储在二维数组中的值。当我尝试返回值时,我得到“不兼容的类型,String无法转换为Customer”我不知道如何返回类型Customer。
private Customer getCustomerAt(int row, int col){
Customer cust = new Customer();
for(int r = 0; r < row; r++){
for(int c = 0; c < col; c++){
cust = seating[r][c];
}
}
return cust;
}
seat是先前在同一类中定义的数组。
由于
答案 0 :(得分:0)
确保阵列座位属于客户类型,即它应该包含customer类型的对象。