nested type cannot hide an enclosing type

混江龙づ霸主 提交于 2019-11-27 05:05:31

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

You're declaring the HelloWorld class twice.

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

You need to delete one of the duplicated classes:

public class HelloWorld { // open HelloWorld

public class HelloWorld
{ // open HelloWorld
       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.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!