我正在努力创建对象这个方法

时间:2013-11-14 11:17:20

标签: methods this

此方法无效

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

1 个答案:

答案 0 :(得分:0)

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

但从功能来看,你似乎正在借款 borrowers.get(索引);

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

你能告诉我你到底在想什么吗?