繁体   English   中英

正确的方法适用于2个线程或打印数字

[英]correct approach for 2 threads alternatively printing numbers

我编写了一个程序,该程序创建了2个新线程并共享一个公共锁对象来交替打印数字。 是否想知道使用wait()和notify()的方法是否正确?

主班

public class MyMain {
public static void main(String[] args) {
MyThread1 obj = new MyThread1();

    Thread thread1 = new Thread(obj);
    Thread thread2 = new Thread(obj);

    thread1.setName("t1");
    thread2.setName("t2");

    thread1.start();
    thread2.start();
}
}

螺纹类

public class MyThread1 implements Runnable{
    int i = 0;
    @Override
    public synchronized void run() {
        while(i<10)
        {
            if(i%2==0)
            {   
                try{
                    notify();
                    System.out.println(Thread.currentThread().getName()+" prints "+i);
                    i++;
                    wait();

                 }catch(Exception e){ e.printStackTrace(); }
            }else
            {
                try{
                    notify();
                    System.out.println(Thread.currentThread().getName()+" prints "+i);
                    i++;
                    wait();
                }catch(Exception e){ e.printStackTrace(); }
            }
        }
    }
}

是否可以更好地使用wait()和notify()而不是在两个if条件中都使用它?

既然那里有一些代码重复,那么我将使用类似以下内容的代码:

while(true) {
    //If it's not my turn I'll wait.
    if(i%2==0) wait();

    // If I've reached this point is because: 
    // 1 it was my turn OR 2 someone waked me up (because it's my turn)
    System.out.println(Thread.currentThread()": "+i);
    i++; // Now is the other thread's turn
    // So we wake him up
    notify();
}

另外,请务必注意显示器的行为。 (线程等待/通知队列)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM