这部分是家庭作业,已经为我提供了一些要使用的代码,我正在尝试找出其中的一部分...

   public PhoneAccount[] getAllAccounts() {
      return tm.values().toArray(new PhoneAccount[tm.size()]);
   }


我试图找出如何在我的主要方法中阅读该方法,并创建了这个类的实例。我命名为“ am”

我到底需要做什么才能使其列出数组的内容?

am.getAllAccounts()


是什么,只是不确定如何使它打印内容?

最佳答案

假设您在PhoneAccount中具有totalBill属性,则可以使用以下代码进行打印。

PhoneAccount[] phoneaccounts = am.getAllAccounts() ;
for( PhoneAccount phoneaccount  : phoneaccounts)
{
 System.out.println(phoneaccount.getTotalBill());
// fetch all the  other properties from phoneaccoun similarly.
}

07-24 13:37