Code: Select all
public record Zoo(List animals ) {
public Zoo(Collection animals) {
this(new ArrayList(animals));
}
...
}
In einer einfachen Java-Klasse könnte ich
haben
Code: Select all
public class Zoo {
...
public Zoo(List animals) {
this.animals = animals.sort(someComparator);
}
}