我正在尝试将一个对象添加到位于其他类中的 ArrayList 中。我有 ArrayList 的 setter 和 getter,但我无法添加。提前致谢。
public class Reservation {
**Client client;**
Reservation(){
Client a = new Client (id ,name,surname,tel,email);
**//need to add it here**
}
public class Client {
int clientID;
String firstName;
String lastName;
**public List<Client> clientList = new ArrayList<Client>();**