当我运行程序时,出现一个StackOverflowError。

我的方法有什么错误?我不确定如何传递它而不会导致它无法编译。 initDialog和initComponents方法仅用于程序的其余部分来创建接口

public class DiceGUI extends JFrame {
    DiceGUI(String title) {
        super(title);
        initDialog();

        setSize(1000, 800);
        setLayout(new BorderLayout());
        add(mainPanel, BorderLayout.CENTER);

        addWindowListener(new WindowAdapter() {
        @Override
        public void windowClosing(WindowEvent e) {
            setDefaultCloseOperation(sch.closeHandler());
       }
    });
}

    public static void main(String[] args) {
        DiceGUI diceGUI = new DiceGUI("Dice Game");
        diceGUI.setVisible(true);
    }
}

    public void initDialog() {
        dPanel = new JPanel();
        dPanel.setLayout(new BoxLayout(dPanel, BoxLayout.Y_AXIS));
        JLabel invalidInput = new JLabel("");
        String[] options = {"OK"};
        dPanel.add(new JLabel("Leave blank to make target 101, enter a number below to change it"));
        dPanel.add(invalidInput);
        JTextField text = new JTextField("");
        dPanel.add(text);

        boolean flag;
        do {
            int changeGameTarget = JOptionPane.showOptionDialog(null, dPanel, "Dice Game", JOptionPane.NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options[0]);
            flag = sch.dialogHandler(changeGameTarget, text, invalidInput);
        } while (!flag);

        text.setText("");
    }


二等

public class SwingComponentsHandler {
    private DiceGUI diceGUI = new DiceGUI("");


    public void restartHandler(JButton r) {
          r.addActionListener(new ActionListener() {
              @Override
              public void actionPerformed(ActionEvent e) {
                  String msg = "New Game?";
                  int yes = JOptionPane.showConfirmDialog(null, msg, "New Game?", JOptionPane.YES_NO_OPTION);

                  // Restart game
                  if (yes == JOptionPane.YES_OPTION) {
                      diceGUI.initDialog();
                  }
              }
          });
    }
}


堆栈跟踪:

Exception in thread "main" Exception in thread "main" java.lang.StackOverflowError
    at sun.awt.X11GraphicsConfig.pGetBounds(Native Method)
    at sun.awt.X11GraphicsConfig.getBounds(X11GraphicsConfig.java:314)
    at java.awt.Window.init(Window.java:505)
    at java.awt.Window.<init>(Window.java:537)
    at java.awt.Frame.<init>(Frame.java:420)
    at javax.swing.JFrame.<init>(JFrame.java:233)
    at DiceGUI.<init>(DiceGUI.java:21)
    at SwingComponentsHandler.<init>(SwingComponentsHandler.java:11)
    at DiceGUI.<init>(DiceGUI.java:16)

最佳答案

您的问题对我们没有太大帮助,因此请加以改进。我能看到您的错误的唯一原因是因为您在Facebook上将整个代码发送给了我,这是不正常的。关于SO的问题应包含所有信息,任何人都可以找到该问题。

您正在为SwingComponentsHandler的每个实例构造DiceGUI的实例,但是您还为DiceGUI的每个实例创建SwingComponentsHandler的实例。你看到问题了吗?

让我们绘制一个依赖图。 A >> B表示A需要构造B进行构造。我们有DiceGUI >> SwingComponentsHandlerSwingComponentsHandler >> DiceGUI,因此,由于依赖项是可传递的,因此我们有DiceGUI >> SwingComponentsHandler >> DiceGUI >> SwingComponentsHandler >> DiceGUI...

这永远不会结束,这是无限的递归。 StackOverflowError总是非常深或无限递归的标志。如果您不编写递归函数,则调试很容易。只要看一下堆栈跟踪,它就应该包含一个相互调用的行A和一个行B。这就像一个NPE,您只需查看一下堆栈跟踪就可以在几分钟内自行调试它。

10-06 15:38