标题: 求大神 解答 横线处 [打印本页] 作者: Bin丶 时间: 2016-6-11 21:24 标题: 求大神 解答 横线处 interface Parent{
public int count(int i);
}
public class Test implements Parent {
public int count(int i){
return i % 9;
}
}
public static void main(String[] args){
________________
int i = p.count(20);
}
}作者: 阿姆1Q84 时间: 2016-6-11 21:39
Test p = new Test(); 不知道做的对不对...你看看先作者: lifeiwangyue 时间: 2016-6-11 22:21
Parent p=new Test(); 多态吧 补充下答案作者: haojingwei310 时间: 2016-6-11 22:59
Test p = new Test(); 作者: TheLittlePrince 时间: 2016-6-11 23:24
Person p = new Test();不知道对不,我是这么想的