本帖最后由 adamjy 于 2014-4-22 12:35 编辑
为什么接口不需要实现类直接就能使用,代码如下
- /**
- * 定义接口
- * @author AdamJY
- *
- */
- interface MyInterface {
- void myFunc();
- }
- public class Demo1 {
- static MyInterface interface1 = new MyInterface() {
-
- @Override
- public void myFunc() {
- System.out.println("hi,i'm adam");
-
- }
- };
- public static void main(String[] args) {
- interface1.myFunc();
- }
- }
复制代码 |