首页 > 学院 > 开发设计 > 正文

内部类和匿名内部类

2019-11-14 21:50:13
字体:
来源:转载
供稿:网友
内部类和匿名内部类

什么是内部类?

在一个类的内部再定义一个类

class A{int i;class B{//B是A的内部类int j;int funB(){//int result = A.this.i + this.j; 等同于int result = i + j;return result;}}}

对a.java进行编译后,除了生成A.class外还有个A美元符B.class(内部类所生成的类文件。外部类美元符内部类.class),在B当中可以任意使用(并非拥有)A的成员变量和成员函数,B并非继承了A

class Test{public static void main(String args[]){A a = new A();//生成内部类对象A.B b = a.new B();a.i = 2;b.j = 4;int result = b.funB();System.out.PRintln(result);}}

生成内部类对象时首先要有外部类:

A a = new A();A.B b = a.new B();

匿名内部类举例

interface A{public void doSomething();}
class aImp implements A{public void doSomething(){System.out.println("做事");}}
class B{public void fun(A test){System.out.println("B的fun函数");test.doSomething();}}
class Test{public static void main(String args[]){B b = new B();//匿名内部类b.fun(new A(){ //与aImp的区别在于没有命名,用于实现接口Apublic void doSomething(){System.out.println("开始做事");}});}}

当需要调用B的fun方法时,需要A类型的参数传入


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表