Files
oop/lab/lab11/Question5/Start.java
2022-05-11 23:36:36 +08:00

12 lines
261 B
Java

public class Start {
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
// implements the Runnable interface with a run method
@Override
public void run() {
new MyFrame();
}
});
}
}