Multiple markers at this line - The value of the local variable v1 is not used - No enclosing instance of type XGS21 is accessible. Must qualify the allocation with an enclosing instance of type XGS21 (e.g. x.new A() where x is an instance of XGS21).java
时间: 2024-04-04 16:32:58 浏览: 159
meteor-fontawesome-markers:用于 fontawesome 标记的流星包装器 (https)
这个错误消息表明你的代码中有两个问题:
1. 本地变量 v1 的值未被使用。这意味着你声明了一个变量 v1,但在后续代码中没有使用它。你可以删除这个变量或者在后续代码中使用它。
2. 类 XGS21 的封闭实例不可访问。这意味着你正在尝试创建一个 XGS21 类的内部类的实例,但没有提供外部类的实例。你需要使用外部类的实例来创建内部类的实例。例如,如果外部类的实例为 x,则可以使用 x.new A() 来创建内部类 A 的实例。
你需要检查你的代码,解决这些问题才能成功编译和运行。
阅读全文