浏览 1935 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-06-11
package snippet; public interface IAPaint { public void paint(); } Interface B: package snippet; public interface IBPaint { public void paint(); } 这样实现就可以了: package snippet; public class ABImpl implements IAPaint, IBPaint { public void paint() { System.out.println("Paint"); } public static void main(String[] args) { IAPaint implA = new ABImpl(); implA.paint(); IBPaint implB = new ABImpl(); implB.paint(); } } 实现了以后,A和B接口实现共享同个方法体。 呵呵,c#可以这样: public class SampleClass : IControl, ISurface { void IControl.Paint() { System.Console.WriteLine("IControl.Paint"); } void ISurface.Paint() { System.Console.WriteLine("ISurface.Paint"); } } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2009-06-11
那interface的意义何在,不如直接就多继承好了。。。
|
|
返回顶楼 | |
发表时间:2009-06-11
偶尔还是会出现这样的状况得。。。
|
|
返回顶楼 | |