thread问题
public class test{
public static void main(String[] args)
Thread1 one=new Thread1();
Thread1 two=new Thread1();
one.start();
two.start();
}
class Thread1 extends Thread{//.......}
如果one 再某时刻要 让two 执行一个 two 含有的一个功能
即one 想通知two一个命令 ..怎么告知two
或者通知test 由test 通知two ??
或者说一个线程中怎么传出一个数据到线程外面?