woc csdn原来只能回复三次 尴尬=。=
自身习惯总是打一句话 打一句话的
艾玛 才发现只能回复三次
→ →
求csdn大大们改善多回复
刚才给人家回复过桥问题的 再加个参数就可以了
public class test1 {
public static void main(String[] args) throws Exception {
test1 t=new test1();
for (int i = 0; i < 10; i++) {
i++;
t.guoqiang(i,i+1);
}
}
public synchronized void guoqiang(int threadName,int threadName2) throws Exception{
System.out.println(threadName+"过桥");
System.out.println(threadName2+"过桥");
Thread.sleep(2000);
}
}