add lab11

This commit is contained in:
2022-05-11 23:36:36 +08:00
parent 855bc8cc3c
commit 243a44f7ed
15 changed files with 421 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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();
}
});
}
}