-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.java
More file actions
29 lines (21 loc) · 758 Bytes
/
Copy pathstart.java
File metadata and controls
29 lines (21 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import javax.swing.*;
public class start{
public static void main(String[] args){
BarberFrame mainFrame = new BarberFrame();
mainFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
mainFrame.setVisible(true);
mainFrame.setBounds(200,0,1000,800);
// LinkProcNode link = new LinkProcNode();
// if (link.getFirst() == null){
// System.out.println("空");
// }else {
// System.out.println(link.getFirst().toShow());
// }
// link.add(new ProcNode(1,"节点一"));
// link.add(new ProcNode(2,"节点二"));
// link.show();
// System.out.println(link.getFirst().toShow());
// //link.delete(1);
// link.show();
}
}