(String[] args)
| 16 | */ |
| 17 | public class StudentDemo { |
| 18 | public static void main(String[] args) { |
| 19 | // ����һ��ѧ����Դ |
| 20 | Student s = new Student(); |
| 21 | |
| 22 | // �����̶߳��� |
| 23 | SetThread st = new SetThread(s); |
| 24 | GetThread gt = new GetThread(s); |
| 25 | |
| 26 | Thread t1 = new Thread(st); |
| 27 | Thread t2 = new Thread(gt); |
| 28 | |
| 29 | t1.start(); |
| 30 | t2.start(); |
| 31 | } |
| 32 | } |