Chapter 10 examples,I got error!
antianchi opened this issue · 1 comments
antianchi commented
ThisSeanZhang commented
maybe you can modify your Person.java like this
public class Person {
private Car car;
public Optional<Car> getCar() {
return Optional.ofNullable(car);
}
}