现有: <br /> 1. interface Animal { <br /> 2. void eat(); <br /> 3. } <br /> 4. <br /> 5. // insert code here <br /> 6. <br /> 7. public class HouseCat extends Feline { <br /> 8. public void eat() { } <br /> 9. }  <br /> 和五个声明: <br /> abstract class Feline implements Animal { } <br /> abstract class Feline implements Animal { void eat(); } <br /> abstract class Feline implements Animal { public void eat(); } <br /> abstract class Feline implements Animal { public void eat() { } } <br /> abstract class Feline implements Animal { abstract public void eat(); } <br /> 分别插入到第5行,有几个可以通过
A、0
B、1
C、2
D、3