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

2022-09-03 04:45:56

此错误是什么意思?

嵌套类型 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

);

答案 1

您已经定义了两次 HelloWorld 类。删除一个级别,你应该没问题。


答案 2

您声明了两次 HelloWorld 类。


推荐