Привет! Я работаю над проектом LinkedList с Java, и у меня есть некоторые неясные проблемы в моей голове. например, это мой класс "Пациент";
public class Patient {
private int id;
private String name;
private String lastName;
private String doctor;
private Patient next;
private Patient prev;
public Patient(int id, String name, String lastName, String doctor, Patient next, Patient prev){
this.id = id;
this.name = name;
this.lastName = lastName;
this.doctor = doctor;
this.next = next;
this.prev = prev;
}
и когда я создаю свой LinkedList, я создаю заголовок и хвостовой узел, как это.
private Patient header = new Patient(0, null, null, null, null, null);
private Patient tail = new Patient(0, null, null ,null ,null, null);
но если я создам эти два узла без new Patient(0, null, null, null, null, null);
, то ничего не изменится. не могли бы вы объяснить, почему _?