标签:接口的多继承 xtend abs 接口 int 需要 extends 多继承 调用
接口:interface f{
void ff();
}
interface r
{
void rr();
}
class s implements ff,r{
public void ff()
{
System.out.println("yes");
}
public void rr()
{
System.out.println("RR");
}
}
f F =new s()时只能调用f内的方法
r F=new s()只能调用r内的方法
接口的多继承:
interface a {
void f();
}
interface b{
void ff();
}
interface c extends a,b
{
void fff();
}
class d implements c{
public void fff()
{
System.out.println("s");
}
public void ff()
{
System.out.println("ss");
}
public void f()
{
System.out.println("sss");
}
}
标签:接口的多继承 xtend abs 接口 int 需要 extends 多继承 调用
原文地址:https://blog.51cto.com/14437184/2421209