Java SetModal问题 dispose()失效 退出不了

dispose()失效的原因可能是你代码的顺序问题,试着把setVisible(true)写在最后面

    this.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
    this.setModal(true);
    this.setVisible(true);