2

私はクラスを持っています:

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
import javax.swing.Timer;


public class MyTimer extends JFrame {
    static JButton quitButton;
    static JButton quit_2Button;
    public MyTimer() {

        initUI();

    }

    public static void random(){
        int x = (int)(Math.random() * 100 + 1);
        int y = (int)(Math.random() * 150 + 1);
        System.out.println(x);
        System.out.println(y);
        quitButton = new JButton("Press this to quit?");
        quitButton.setBounds(x, y, 200, 20);
    }
    public void initUI() {
        random();
        JPanel panel = new JPanel();

       getContentPane().add(panel);

       panel.setLayout(null);
       JButton quit_2Button = new JButton("Or maybe press this to quit!");
       quit_2Button.setBounds(50, 100, 200, 20);
       quit_2Button.setRolloverEnabled(true);
       quit_2Button.addActionListener(new ActionListener() {
           @Override
           public void actionPerformed(ActionEvent event) {
               System.exit(0);
          }
       });
       quitButton.addActionListener(new ActionListener() {
           @Override
           public void actionPerformed(ActionEvent event) {
               finder.main(null);
          }
       });


       panel.add(quitButton);
       panel.add(quit_2Button);
       setTitle("Java");
       setSize(300, 200);
       setLocationRelativeTo(null);
       setDefaultCloseOperation(EXIT_ON_CLOSE);
    }

}

、 と

    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;

    import javax.swing.SwingUtilities;
    import javax.swing.Timer;

    public class timer_run {
        ActionListener al = new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                panel.remove(); //error here
            }
         };
        public static void main(String[] args) {


            SwingUtilities.invokeLater(new Runnable() {
                @Override
                public void run() {
                    MyTimer ex = new MyTimer();
                    ex.setVisible(true);
                    new timer_run();

                }

            });

        }
         public timer_run() {
                Timer timer = new Timer(1000, al);
                timer.start();


    }
}

そして、actionlistener al がアクティブ化されたときに呼び出されるようにしようとしていjpanel.remove(quit_2Button)ます。問題は、これを試みるたびに「パネルを解決できません」というエラーが表示されることです。timer_run が JPanel フレームにアクセスできないことが原因だと思いますが、さまざまな試行錯誤の結果、これを修正できませんでした。timer_run に JPanel フレームを表示させるために何ができるかについて、誰か提案はありますか? 事前に感謝します。私は Java 初心者なので、可能であればできるだけ簡単に答えてください。

4

1 に答える 1