尝试在Java中使用JFrame内部的paint方法时出错

时间:2016-01-18 23:47:34

标签: java swing background event-handling background-color

我正在尝试在类中使用paint()方法,该类扩展JFrame类以绘制随机滚动的骰子。尝试执行此代码时,会显示错误,并且没有任何内容显示为输出。

有人可以告诉我如何在JFrame中以正确的方式实现此方法paint()吗?

这是我的代码:

import java.awt.*;
import java.awt.event.*;
import javax.swing.event.*;
import javax.swing.*;
import java.util.Random;

public class Background extends JFrame { 
    private Random ran;
    private int value;
    private JButton b;

    public Background () {
        super("the title");
        setLayout(new FlowLayout());
        ran = new Random();
        value = nextValue() ;
        b=new JButton("ROLL THE DICES");

        b.setForeground(Color.WHITE);//ndryshon ngjyren e shkrimit
        b.setBackground(Color.YELLOW);
        b.setBounds(20, 30, 20, 70);
        add("South",b);

        thehandler hand=new thehandler();
        b.addActionListener(hand);
    }

    private int nextValue() {
        return Math.abs(ran.nextInt()) % 6 + 1 ;
    }

    public void roll() {
        value = nextValue();
        repaint();
    }

    public int getValue() {
        return value;
    }

    public void paint(Graphics g) {
        g.setColor(Color.BLACK);
        g.draw3DRect(40, 40, 60, 60,true);
        /*
        g.drawLine(40,40,40,100);
        g.drawLine(40,100,100,100);
        g.drawLine(100,100,100,40);
        g.drawLine(100,40,40,40);
        */
        g.setColor(Color.RED);
        if (value == 1 || value == 3 || value == 5) g.fillOval(68,68,4,4);
        if (value != 1) { g.fillOval(53,83,4,4) ; g.fillOval(83,53,4,4) ;}
        if (value == 4 || value == 5 || value == 6)
        { g.fillOval(53,53,4,4) ; g.fillOval(83,83,4,4) ;}
        if (value == 6) { g.fillOval(68,53,4,4) ;g.fillOval(68,83,4,4) ;}
    }

    private class thehandler implements ActionListener{
        private Background m;

        thehandler(Background thisone){
            m=thisone;
        }

        public void actionPerformed(ActionEvent event) {
            m.roll();
        }
    }

    public static void main(String[] args) {
        ("Center",d);
        // f.add("South",b = new Button("Roll"));
        // b.addActionListener(new Doit(d));
        d.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        d.getContentPane().setBackground(Color.GREEN);
        f.setSize(400,300);
        f.pack() ;
        f.setVisible(true); Frame f = new Frame("Dice");
        // Button b;
        Background  d = new Background();
        // f.addWindowListener(new MyListener());
        //f.add 
    }
}

1 个答案:

答案 0 :(得分:2)

所以,你的基本问题就在这里......

thehandler hand = new thehandler();

thehandler的构造函数需要Background ...

的实例
private class thehandler implements ActionListener {
    //...
    thehandler(Background thisone) {

所以,它应该是......

thehandler hand = new thehandler(this);

摆脱了编译错误。

它没有画任何东西的原因是因为你通过覆盖paint的{​​{1}}和未能调用JFrame而打破了画颜链。

有关绘画如何运作的详细信息,请参阅Painting in AWT and SwingPerforming Custom Painting

一般的答案是,不要这样做,有很多理由说明为什么你不应该覆盖super.paint的{​​{1}}:

这只是他们中的另一个。

相反,创建一个单独的组件(例如从paint延伸)并覆盖它的JFrame方法并执行自定义绘画(首先调用JPanel

请查看JFrame shows up grey, blank以获取更详细的示例