자바 는 인 터 페 이 스 를 통 해 익명 류 의 인 스 턴 스 코드 를 실현 합 니 다.


package com.chase.test;

/**
 *
 *
 * @author Chase
 *
 * @date 2013-10-18 04:28:17
 *
 * @version V1.0
 */
interface I1 {
    void print();
    void eat();
}

public class AnonymousClass {

    public static String excute(I1 c){
        System.err.println("excute ...");
        c.print();
        c.eat();
        return "excute() ...";
    }

    public String testExcute() {
        return excute(new I1(){
                public void print() {
                    System.out.println(" ...");
                }

                public void eat() {
                    System.out.println(" ...");
                }
            }) ;
        }

    public static void main(String[] args) {
        AnonymousClass entity = new AnonymousClass();
        System.out.println(entity.testExcute());
    }
}

실행 결과:

좋은 웹페이지 즐겨찾기