本帖最后由 安阳 于 2013-8-16 23:31 编辑
接口多实现时的问题,必须返回值都一样吗?- class InterfaceDemo {
- public static void main(String[] args) {
- InterClass ic = new InterClass();
- ic.show();
- }
- }
- interface Inter1 {
- public int show(); //此处int改为void才可以,还有其他方法吗?
- }
- interface Inter2 {
- public void show();
- }
- class InterClass implements Inter1,Inter2{
- public void show() {
- System.out.println("Hello World!");
- }
- }
复制代码 |