nested type cannot hide an enclosing type

2019-01-07 22:23发布

What does this error mean?

The nested type HelloWorld cannot hide an enclosing type

Where HelloWorld is the java file name. Here's the code if you need it:

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

);

标签: java jogl
5条回答
不美不萌又怎样
2楼-- · 2019-01-07 22:59

You're declaring the HelloWorld class twice.

查看更多
小情绪 Triste *
3楼-- · 2019-01-07 23:09

You need to delete one of the duplicated classes:

public class HelloWorld { // open HelloWorld

public class HelloWorld
{ // open HelloWorld
查看更多
霸刀☆藐视天下
4楼-- · 2019-01-07 23:16

You have defined the HelloWorld class twice. Remove one level and you should be fine.

查看更多
贪生不怕死
5楼-- · 2019-01-07 23:18
       import net.java.games.jogl.*; 
public class HelloWorld { 
    // open HelloWorld      
    public class HelloWorld     {
     // open HelloWorld 

Remove one of the public class HelloWorld { and corresponding } brace.

查看更多
beautiful°
6楼-- · 2019-01-07 23:21

Just delete one of your declarations for public class HelloWorld; you're using it twice, only one is required.

查看更多
登录 后发表回答