嵌套类型无法隐藏封闭类型
此错误是什么意思?
嵌套类型 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
);