问题描述
- Java中一个类如何实现多个接口中同名同参返回值不同的方法?
-
如:`class A implements Interface1,Interface2{ //这里该怎么写呢? } interface Interface1{ public void method(); } interface Interface2{ public int method(); }
解决方案
class A implements Interface1,Interface2{
//直接写啊
public void method(){........}
public int method(){........}
}
interface Interface1{
public void method();
}
interface Interface2{
public int method();
}
时间: 2024-11-03 17:19:33