Stream with priority settings

I just made a countdown application with three threads, including the main thread. I have CountdownEven set to low, so that countdownOdd will be displayed first, but nothing happens in the output. Can anyone see the problem?

//Main
public class CountdownApp 
{

    public static void main(String[] args) 
    {
    new CountdownApp().start();

    }
    public void start()
    {
        Thread count1 = new CountdownEven();
        Thread count2 = new CountdownOdd();
        count1.setPriority(Thread.MIN_PRIORITY);
        count2.setPriority(Thread.MAX_PRIORITY);
        count1.start();
        count2.start();
    }

}


public class CountdownEven extends Thread
{
    public void run()
    {
        for(int i = 10; i > 0; i-=2)
        {
            System.out.println(this.getName()+ " Count: " +i);
            Thread.yield();//This is to allow the other thread to run.
    }
    }


}

public class CountdownOdd extends Thread
{
    public void run()
    {
        for(int i = 9; i > 0; i-=2)
        {
            System.out.println(this.getName()+ " Count: " +i);
            Thread.yield();//This is to allow the other thread to run.
    }
    }

}
+3
source share
1 answer

I tried your code and it outputs the result.

Thread-0 Count: 10
Thread-0 Count: 8
Thread-0 Count: 6
Thread-0 Count: 4
Thread-0 Count: 2
Thread-1 Count: 9
Thread-1 Count: 7
Thread-1 Count: 5
Thread-1 Count: 3
Thread-1 Count: 1

Just like the result should be ... so what's your question? Maybe you just need to open a new console widget / tab in eclipse or do you have an active filter?

But imho I will not use Threadpriorities for this purpose, see http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Thread.html

+2
source

All Articles