此方法无效
/**
* Outputs all details of all customers to the terminal window.
*/
public void getAllBorrowers()
{
int index = 0;
while(index < borrowers.size())
{
borrowers.get(index);
index++;
}
System.out.println("Number of borrowers: " + getNumberOfBorrowers());
}
答案 0 :(得分:0)
我不太确定你在这里做什么。
但从功能来看,你似乎正在借款 borrowers.get(索引);
但没有得到价值并打印出来。
你能告诉我你到底在想什么吗?