gpt4 book ai didi

java - 如何读取数组的方法?在java中

转载 作者:行者123 更新时间:2023-12-02 07:36:22 26 4
gpt4 key购买 nike

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

   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.
}

关于java - 如何读取数组的方法?在java中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12175618/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com