求帮忙看下JAVA中paint()的重写

这里该怎么修改呢?具体代码如下packagemy.test;importjava.awt.*;importjavax.swing.JPanel;publicclassTe... 这里该怎么修改呢?具体代码如下package my.test;import java.awt.*;import javax.swing.JPanel;public class TetrisPanel extends JPanel implements Runnable {public int ypos=-80;private Image iBuffer;private Graphics gBuffer; public TetrisPanel(){ Thread t =new Thread(this); t.start();}@Overridepublic void run() { while(true){ try{ Thread.sleep(30); } catch(InterruptedException e){ ypos = 5; if(ypos>300) ypos=-80; repaint(); } } public void paint(Graphics g){ g.setColor(Color.RED); g.fillOval(90, ypos, 80, 80); }}}package my.test;import java.awt.*;import java.awt.event.*;import javax.swing.*;public class MyWindow extends JFrame { MyWindow(){ this.setTitle("这是测试窗口"); Container c = this.getContentPane(); c.add(new TetrisPanel()); this.setBounds(400, 200, 300, 300); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setResizable(false); this.setVisible(true); }public static void main(String[] args) { MyWindow DB=new MyWindow(); DB.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); }}); }} 展开
 我来答
jiang19911113
2016-08-04 · TA获得超过205个赞
知道小有建树答主
回答量:192
采纳率:0%
帮助的人:169万
展开全部
paint是 控件的重写方法 你放错位置了

从run方法中拉出来
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式