试题详情

已定义接口interface Ieatable,接口中只有一个方法int eat(int num);,关于接口的实现类CatEat的说法错误的是( )

A实现接口的语法为class CatEat: Ieatable {…省略类内容…}

B类CatEat中除构造函数外,只有一个方法eat

C类CatEat中除构造函数外,可以有多个方法

D类CatEat中的eat方法,只能有一个整形参数