gpt4 book ai didi

java - Eclipse 无法识别匿名内部类

转载 作者:行者123 更新时间:2023-12-01 13:36:43 26 4
gpt4 key购买 nike

出于某种原因,Eclipse 似乎无法识别何时使用匿名内部类,并打印一条错误消息,指出相关匿名类不存在。在尝试运行以下示例(直接从《Thinking in Java》一书中复制)后,我得到 Contents Cannot be returned to a type

public class Parcel7 {
public Contents contents() {
return new Contents() { // Insert a class definition
private int i = 11;

public int value() {
return i;
}
}; // Semicolon required in this case
}

public static void main(String[] args) {
Parcel7 p = new Parcel7();
Contents c = p.contents();
}
}

我是否遗漏了一些明显的东西?

最佳答案

必须有一个名为 Contents 的接口(interface)才能工作,您确定它已被创建或导入吗?

关于java - Eclipse 无法识别匿名内部类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21216403/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com