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

什么是匿名内部类什么时侯用?

程序员文章站 2023-11-07 22:28:46
7 Anonymous inner class (视频下载) (全部书籍) 马克-to-win:有时如此简单,都没有必要清清楚楚明确出类名,用一下就完,就用匿名内部类。注意: 下面的new FigureMark_to_win(){。。。。};的语法形式。它和以往的new FigureMark_to_ ......

7 anonymous inner class  

马克-to-win:有时如此简单,都没有必要清清楚楚明确出类名,用一下就完,就用匿名内部类。注意: 下面的new figuremark_to_win(){。。。。};的语法形式。它和以往的new figuremark_to_win()不同,现在的这个new的是figuremark_to_win的子类(否则“我啥也不是”, 应该被打印出来。)。

例2.7_0:

class figuremark_to_win {
    void whoami(){
       system.out.println("我啥也不是");   
    }
}
class triangle extends figuremark_to_win {
    void whoami() {
        system.out.println("三角形!");
    }
}
public class test {
    public static void main(string[] args) {
        triangle d = new triangle();
        d.whoami();
        new triangle().whoami();//连指针都省了
/* 马克-to-win:下面这句程序,都没有像上面一样提出一个triangle类的概念,主要是如此简单,都没有必要清清楚楚明确出类名,所以就直接 new figuremark_to_win(){。。。。}; ,马克-to-win: 大家注意一下格式和分号。 even though the next statemnt new a abstract class which is not
allowed, it implement the method of whoami, so it is not the real abstract class instantiation.
*/
        figuremark_to_win a = new figuremark_to_win() {
            void whoami() {
                system.out.println("长方形!");
            }
        };
        a.whoami();
。。。。。。。。。。。。。。。。。
详情请进:http://www.mark-to-win.com/index.html?content=javabeginner/javaurl.html&chapter=javabeginner/javabeginner4_web.html#anonymousinnerclass