publpublic synchronized void push(Wotou wt) { 
while(index == wt.length) {
try {
this.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
this.notify(); //会执行吗
wotou[index] = wt; //会执行吗 index++;  //会执行吗 }