-1

此方法无效

    /**
    * 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());
    }
4

1 回答 1

0

我不太确定你想在这里做什么。

但从函数看来,你是从 borrowers.get(index);

但没有得到价值并打印出来。

你能告诉我你到底期待什么吗?

于 2013-11-14T11:22:45.747 回答