两个线程交替打印100以内的奇偶数

两个线程交替打印100以内的奇偶数public class TestNotify public static int num 0 public static final int MAX COUNT 100 public static voi

大家好,欢迎来到IT知识分享网。

public class TestNotify { public static int num = 0; public static final int MAX_COUNT = 100; public static void main(String[] args) { Object lock = new Object(); Thread thread1 = new Thread(() -> { while (num <= MAX_COUNT) { synchronized (lock) { try { if (num % 2 == 0) { System.out.println("线程" + Thread.currentThread().getName() + "打印偶数:" + num); num++; lock.notify(); } else { lock.wait(); } } catch (Exception e) { e.printStackTrace(); } } } }, "1"); Thread thread2 = new Thread(() -> { while (num <= MAX_COUNT) { synchronized (lock) { try { if (num % 2 != 0) { System.out.println("线程" + Thread.currentThread().getName() + "打奇数:" + num); num++; lock.notify(); } else { lock.wait(); } } catch (Exception e) { e.printStackTrace(); } } } }, "2"); thread1.start(); thread2.start(); } }

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/97558.html

(0)

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注微信