码迷,mamicode.com
首页 > 其他好文 > 详细

代码片--练习匿名内部类

时间:2017-12-15 13:36:06      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:ace   inter   turn   string   style   oid   stat   而且   ack   

package com.dreamy.day04;

/**
 * @author dreamy
 * 需求:
 * 补足代码,通过匿名内部类。
 */

interface Inter{
    void method();
}

class Test{
    //补足代码,通过匿名内部类。
    /*
    static class Inner implements Inter{
        public void method{
            System.out.println("method run");
        }
    }
    */
    static Inter function() {
        return new Inter() {
            @Override
            public void method() {
                System.out.println("method run");
            }
        };
    }
    
}
public class InnerClassTest {

    /**
     * @param args
     */
    public static void main(String[] args) {
        //Test.function():Test类中有一个静态的方法function。
        //.method():function这个方法运算后的结果是一个对象。而且是一个Inter类型的对象
        //因为只有是Inter类型的对象,才可以调用method方法。
        Test.function().method();
        
//        Inter in=Test.function();
//        in.method();
        show(new Inter() {
            public void method() {
                System.out.println("method run");
            }
        });
    }
    
    public static void show(Inter in) {
        in.method();
    }

}
class InnerTest{
    public static void main(String[] args) {
        new Object() {
            public void function() {
                
            }
        }.function();
    }
}

 

代码片--练习匿名内部类

标签:ace   inter   turn   string   style   oid   stat   而且   ack   

原文地址:http://www.cnblogs.com/zhaohuan1996/p/8042409.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!