(String[] args)
| 38 | */ |
| 39 | public class StudentDemo { |
| 40 | public static void main(String[] args) { |
| 41 | // ����һ��ѧ����Դ |
| 42 | Student s = new Student(); |
| 43 | |
| 44 | // �����̶߳��� |
| 45 | SetThread st = new SetThread(s); |
| 46 | GetThread gt = new GetThread(s); |
| 47 | |
| 48 | Thread t1 = new Thread(st); |
| 49 | Thread t2 = new Thread(gt); |
| 50 | |
| 51 | t1.start(); |
| 52 | t2.start(); |
| 53 | } |
| 54 | } |