欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java通过接口实现匿名类的实例代码

程序员文章站 2023-12-18 22:00:28
复制代码 代码如下:package com.chase.test; /** * 通过接口实现匿名类的实例 *  * @author chas...

复制代码 代码如下:

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());
    }
}

运行结果:

Java通过接口实现匿名类的实例代码

上一篇:

下一篇: