Класс A
public class Customer {
// Add instance varables
private String lName;
private String fName;
private String address;
private String zip;
// A constructor that initializes the last name, first name, address, and zip code.
public Customer(String lN, String fN, String addr, String zi) {
lName = lN;
fName = fN;
address = addr;
zip = zi;
}
// setAccount(Account a) - Sets the Account for this customer
}
// getAccount() - Returns a reference to the Account object associated with this customer
public Account getAccount(){
return();
}
}
Я не знаю, как "ссылаться" на объект из другого класса. Я не могу создать объект, потому что я хочу, чтобы все было универсальным и могло быть создано позже и чтобы два класса были правильно связаны друг с другом.
Класс B
public class Account {
// Add instance variables
private String accountNumber;
private double balance;
private Customer customer;
// A constructor that initializes the account number and Customer, and sets the blance to zero.
public Account(String aN, Customer c) {
accountNumber = aN;
balance = 0.00;
customer = c;
}
Итак Я не могу понять, как создать установленную учетную запись и получить методы учетной записи в классе A