主方法main类中 实现接口 必须要定义abstract吗- /*
- * 写出程序结果
- */
- package ExceptionDemo;
- interface Inter
- {
- public abstract void show(int a,int b);
- public abstract void func();
- }
- public class ExceptionDemo9 implements Inter
- {
- public static void mian(String args[])
- {
- //补足代码,调用两个函数,要求匿名内部类
- Inter in=new Inter()
- {
- public void show(int a,int b ){//public 必须写,接口中的成员是公有的
-
- }
- public void func()
- {
-
- }
- };
-
- in.show(5,8);
- in.func();
-
- }
-
- }
复制代码 赐教 谢谢 |
|