嵌套类型不能隐藏封闭类型

这个错误是什么意思?

嵌套类型HelloWorld无法隐藏封闭类型

其中HelloWorld是Java文件名。这是您需要的代码:

import net.java.games.jogl.*;

public class HelloWorld

{ // open HelloWorld

public class HelloWorld

{ // open HelloWorld

public static void main (String args[])

{ // open main

try

{ // open try

System.loadLibrary("jogl");

System.out.println("Hello World! (The native libraries are installed.)");

} // close try

catch (Exception e) // all try's need a catch

{ } // even if the catch does nothing

} // close main

} // close HelloWorld

);

回答:

您已经两次定义了HelloWorld类。删除一个级别,就可以了。

以上是 嵌套类型不能隐藏封闭类型 的全部内容, 来源链接: utcz.com/qa/431644.html

回到顶部