public class TestThreadWait2 {
public static void main(String[] args) {
TV tv = new TV();
new Actor(tv).start();
new Viewer(tv).start();
}
}
//生产者-》演员
class Actor extends Thread{
TV tv;
?
public Actor(TV tv) {
this.tv = tv;
}
?