为了账号安全,请及时绑定邮箱和手机立即绑定

请问JAVA Jframe加了panint方法后就显示为黑色了是为什么?

请问JAVA Jframe加了panint方法后就显示为黑色了是为什么?

慕虎7371278 2018-07-27 14:10:14
public class MyGameFrame extends JFrame {public void paint(Graphics g) {g.drawLine(100,100,300,300);}/* * 初始化窗口 */public void launchFrame() {this.setTitle("打飞机小游戏");this.setVisible(true);//设置为可见this.setSize(500,500);//设置窗口的长度、宽度this.setLocation(300,300);//设置窗口的位置/** 设置关闭窗口功能*/this.addWindowListener(new WindowAdapter(){public void windowClosing(WindowEvent e) {System.exit(0);}});}public static void main(String[] args){MyGameFrame f = new MyGameFrame();f.launchFrame();f.setVisible(true);}}
查看完整描述

4 回答

?
那你那

TA贡献1条经验 获得超4个赞

直接把 this.Visible(true);

放到

this.addWindowListener(new WindowAdapter()

{

public void windowClosing(WindowEvent e) {

System.exit(0);

}

});

的后边就解决了

查看完整回答
4 反对 回复 2018-11-27
  • 4 回答
  • 0 关注
  • 2158 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信