黑马程序员技术交流社区
标题:
求大神来帮我解答
[打印本页]
作者:
leo_yang
时间:
2016-4-25 21:58
标题:
求大神来帮我解答
public class A1 {
public static void main(String[] args) {
JFrame w=new JFrame("11");
w.setVisible(true);
w.setSize(400, 600);
w.setDefaultCloseOperation(3);
MyPanel p=new MyPanel();
w.add(w);
}
}
class MyPanel extends JPanel{
public void paint (Graphics g){
g.fillOval(200, 200, 50, 50);
}
}
class MyPanel extends JPanel 这里为什么出错 显示 The hierarchy of the type MyPanel is inconsistent
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2