现有:  <br /> 1. interface Animal {   <br /> 2.   void eat();  <br /> 3.  }   <br /> 4.  <br /> 5. // insert code here   <br /> 6.  <br /> 7. public class HouseCat implements Feline {   <br /> 8.   public void eat() { }  <br /> 9. }  <br /> 和以下三个接口声明:  <br /> interface Feline extends Animal { }   <br /> interface Feline extends Animal { void eat(); }    <br /> interface Feline extends Animal { void eat() { } }   <br /> 分别插入到第 5 行,有多少行可以编译?()  <p> 现有:  <br /> 1. interface Animal {   <br /> 2.   void&ens
A、A. 0
B、B. 1
C、C. 2
D、D. 3