conceptual
Compilation 37
Does this code compile? Why or why not?
javaabstract class AbstractAnimal { public AbstractAnimal(String name) {} } class Cat extends AbstractAnimal { public Cat() {} }
Does this code compile? Why or why not?
javaabstract class AbstractAnimal { public AbstractAnimal(String name) {} } class Cat extends AbstractAnimal { public Cat() {} }