本帖最后由 王震阳 于 2012-10-8 21:23 编辑
- class TestImplementsInterface
- {
- public static void main(String[] args)
- {
- classC c=new classC();
- c.test();//测试方法是否实现,可见是可以的。
- }
- }
- interface interA
- {
- void test();//系统会默认成public static void test();
- }
- interface interB
- {
- void test();//系统会默认成public static void test();
- }
- class classC implements interA,interB
- {
- public void test()//当两个接口中有相同的方法时,我们只要实现一个即可。
- {
- System.out.println("classC 实现了A,B两个接口。这两个接口里有两个相同的抽象方法test(),可以看到尽管接口中的抽象方法相同,那么并不影响我们去实现。");
- }
- }
复制代码 |
|