当前位置: 代码迷 >> Eclipse >> MainPanel cannot be resolved to a type 如何解决
  详细解决方案

MainPanel cannot be resolved to a type 如何解决

热度:158   发布时间:2016-04-23 00:19:18.0
MainPanel cannot be resolved to a type 怎么解决
public class GameFrame extends JFrame {
int x,y;
public MainPanel p1;
 
public GameFrame(){
p1 = new MainPanel(this);
this.add(p1,BorderLayout.CENTER);
}

这一段的问题在哪里
------解决思路----------------------
意思是说你在GameFrame这个类中使用的MainPanel这个类找不到
可能的原因
1、这个类压根就不存在
2、有这个类,但是你没有导入(import(同一个包下不需要))
楼主自己再检查下
  相关解决方案