刚刚看到10.6关于匿名内部类的介绍,里面的代码真叫我头大,在电脑上竟然编译不过,IDE里直接标出错误了,拿10.6第一段代码来看:
public class Parcel7 {
public Contents contents() {
return new Contents() {
private int i = 11;
public int value() {
return i;
}
};
}
public static void main(String[] args) {
Parcel7 p = new Parcel7();
Contents c = p.contents();
}
}
这段代码是原书里原封不动弄过来的,在返回值为Contents的方法contents()中,语句return后面跟的是Contents类的定义,可是在Eclipse里标出了错误,大致意思是Contents不能被作为类型,我以为是IDE的问题,于是用文本编辑器写下来用命令行编译,仍旧出错,下面上图:
非常奇怪,这一节后面的代码似乎也无法编译过,具体原因尚不清楚,真叫人头大。
4月22日,我似乎找到了解决的方法,只要在外面提供一个Contents接口就可以解决问题:
interface Contents {
int value();
}
public class Test {
public Contents contents() {
return new Contents() {
private int i = 11;
public int value() {
return i;
}
};
}
public static void main(String[] args) {
Test p = new Test();
Contents c = p.contents();
System.out.println(c.value());
}
}
如上面代码,我提供了接口Contents,现在这个例子可以顺利编译并运行了。