在多线程中使用Yield

时间:2018-10-29 09:37:35

标签: java multithreading yield thread-synchronization

我刚刚开始学习线程。 因此,我试图编写一些基于线程的程序。我想一个接一个地打印字母和数字。

我使用了等待并为此进行通知。 现在,我要使用yield。

public class Y {

    public static void main(String[] args) {

        X an = new X(false);

        Thread t1 = new Thread(new Runnable(){
            @Override
            public void run() {
                try {
                    an.Alpha();
                }
                catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        });

        Thread t2 = new Thread(new Runnable(){
            @Override
            public void run() {
                try {
                    an.numbers();
                }
                catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        });

        t1.start();
        t2.start();
    }
}

class X
{
    boolean flag;

    X(boolean flag)
    {
        this.flag = flag;
    }

    synchronized void Alpha() throws InterruptedException
    {
        for (char i = 'A'; i <= 'Z';i++)
        {
            while (flag == false)
            {
                System.out.println(+i);
                //notifyAll();
                flag = true;
            }
            Thread.yield();
            //wait();
        }
    }

    synchronized void numbers() throws InterruptedException
    {
        for (int i = 1;i <= 26;i++)
        {
            while (flag == true)
            {
                System.out.println(+i);
                //notifyAll();
                flag = false;
            }
            Thread.yield();
            //wait();
        }
    }
}

我无法获得与等待/通知相同的输出。

我知道我不了解关于yield的一些东西,有人可以帮助我清除关于yield的概念并修复上面的代码。

带有等待/通知的输出:65 1 66 2 67 3

产量(产量):65 1

0 个答案:

没有答案