62,629
社区成员
发帖
与我相关
我的任务
分享
interface HYL {
void print();
}
public class HYLTest {
public static void main(String[] args) {
}
public void add(HYL i){
get(i);
}
public void get(Object ob) {
}
}
interface I {
}
class O implements I{
}
//实际上是
class O extends Object implements I{
}