java多线程问题
需求如图,以下是我写的代码,实际运行只出现两个就没了,找了好久没发现问题,求助{:5_104:}public class ThreadTest8 {
public static void main(String[] args) {
new PrintLetters().start();
new PrintLetters().start();
}
}
class PrintLetters extends Thread{
private static boolean flag = true;
private static char c = 'a';
@Override
public void run() {
while (true){
synchronized (this){
for (int i=0;i<3;i++){
if (flag) {
System.out.println(Thread.currentThread().getName() + "-->" + c);
}else{
System.out.println(Thread.currentThread().getName() + "-->" + (char)(c-32));
}
c++;
if (c>'z'){
c='a';
}
}
flag = !flag;
this.notify();
try {
this.wait();
this.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
} 这里应该是循环的问题,看你代码运行结果不应该是该图的,for循环里的if判断改为每3次变为else再试一下,电脑没在身边用手机打的 迟到丶爱 发表于 2020-10-9 20:19
这里应该是循环的问题,看你代码运行结果不应该是该图的,for循环里的if判断改为每3次变为else再试一下,电 ...
我觉得for循环里的if只是用于判断输出的是大写还是小写,即使if错了也会有输出,个人感觉是线程问题{:10_266:} 你这个我感觉是线程问题,同步锁的要求是必须用同一把锁,你在代码中使用的锁是用的this--->指的是当前对象,但是你在main方法中创建的是两个对象,相当于同步锁无效了,当执行了两次之后两个线程都被阻塞了,所以只能打印两次。可以试着在类中定义一个静态的对象作为锁{:10_257:}
页:
[1]