Using the information in the UML diagram above, suppose an Oak
prepares for winter like a Tree, but it drops its leaves first.
What code should replace ??? in the following code?
public class Oak extends Tree {
...
public void prepareForWinter(){
this.dropLeaves();
???
}
}
There are no hints for this question