标题: 接口的题 求答案,不知道选哪个 [打印本页] 作者: kunwenli 时间: 2016-5-21 12:25 标题: 接口的题 求答案,不知道选哪个 interface Parent {
public int count(int i);
}
public class Demo3 implements Parent {
public int count(int i) {
return i % 9;
}
public static void main(String[] args) {
________________
int i = p.count(20);
}
}
在横线上填什么能让程序编译成功______---单选.
A : Demo3 p = new Demo3();
B : Parent p = new Demo3();
C : Demo3 p = new Parent();
D : Parent p;