我最近开始学习一些java,此时我面临一个问题。当 if 语句完成时,我希望另一个类的 JFrame 弹出。
所以我想要这样的东西:
if(...)
{
//open the JFrame from the other class
}
我的 JFrame 类如下所示:
import javax.swing.*;
public class Game {
public static Display f = new Display();
public static int w = 600;
public static int h = 400;
public static void main(String args[])
{
f.setSize(w, h);
f.setResizable(true);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setTitle("Frame Test");
}
}
class Display extends JFrame
{
}