我有两个类,一个客户和帐户。在 Customer 类中,我有客户的姓名和他拥有的帐户。这些帐户在一个数组中:
private Account accounts[] = new Account[2];
在计划开始时,将设立储蓄账户:
public Customer(){
account[0] = new Account("savings");
}
其中 Account 类的构造函数是:
public Account(String name){
this.name = name;
}
我在客户中有一个方法可以添加一个信用账户:
private void addAccount(){
account[1] = new Account("credit");
}
现在我必须在 Account 类中将钱从储蓄转移到信用
如何访问 Customer 类中的两个不同帐户。我尝试过但失败了 NullpointerExceptions
谢谢你。