> masteringswe_
conceptual

Compilation 37

Does this code compile? Why or why not?


java
abstract class AbstractAnimal { public AbstractAnimal(String name) {} } class Cat extends AbstractAnimal { public Cat() {} }