A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 黑马-王鹏 中级黑马   /  2013-3-16 23:59  /  1159 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 黑马-王鹏 于 2013-3-17 00:14 编辑

内部类可以引用其它的包含类的成员吗?有没有什么限制?
(匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)?
求详细解答

2 个回复

倒序浏览
一个内部类对象可以访问创建它的外部类对象的内容

如果不是静态内部类,那没有什么限制。


匿名的内部类是没有名字的内部类。不能extends(继承) 其它类,

但一个内部类可以作为一个接口,由另一个内部类实现。

匿名类本身就是通过继承类或者接口来实现的。

但是不能再显式的extends 或者implements了。
  1. 先定义一个接口:
  2. interface Contents {
  3.   int value();
  4. }

  5. 再定义一个类(构造函数不是默认的):
  6. public class Wrapping {
  7.   private int i;
  8.   public Wrapping(int x) { i = x; }
  9.   public int value() { return i; }
  10. }

  11. 先实现接口:
  12. public class Parcel6 {
  13.   public Contents cont() {
  14.     return new Contents() {
  15.       private int i = 11;
  16.       public int value() { return i; }
  17.     }; // Semicolon required in this case
  18.   }
  19.   public static void main(String[] args) {
  20.     Parcel6 p = new Parcel6();
  21.     Contents c = p.cont();
  22.   }
  23. }

  24. 再继承类:
  25. public class Parcel7 {
  26.   public Wrapping wrap(int x) {
  27.     // Base constructor call:
  28.     return new Wrapping(x) {
  29.       public int value() {
  30.         return super.value() * 47;
  31.       }
  32.     }; // Semicolon required
  33.   }
  34.   public static void main(String[] args) {
  35.     Parcel7 p = new Parcel7();
  36.     Wrapping w = p.wrap(10);
  37.   }
  38. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
贾文泽 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马