public class ThreadDemo {
public static void main(String[] args) {
Student s = new Student();
Input in = new Input(s);
Output out = new Output(s);
Thread tin = new Thread(in);
Thread tout = new Thread(out);
tin.start();
tout.start();
}
} 作者: China_Riven 时间: 2015-7-15 16:49
看帖不回,天理难容作者: 晓月残魂 时间: 2015-7-15 18:53
加油加油,我也刚刚看到这作者: 鲤鱼仙 时间: 2015-8-3 22:20
还是烟花头乱