Setting priority to Java's threads

前端 未结 5 2054
没有蜡笔的小新
没有蜡笔的小新 2020-11-27 20:14

I have a program that runs in a few threads. The main thread shares an object with the other threads and in the main I have a call to:

synchronized(obj){
            


        
相关标签:
5条回答
  • 2020-11-27 20:28

    The series of articles here indicate some complexities in the management of thread priorities on various platforms.

    I wonder if your fundamental problem is simply that your worker threads are very CPU intensive and hence rarely reach a point where they would naturally "let go" of the processor (for example by doing some IO or sleeping.) If such is the case then you might include some calls to yield() in those workers, hence giving other Threads more of a chance.

    0 讨论(0)
  • 2020-11-27 20:36

    Increasing the main thread's priority the way Macarse says will probably work. However, you are relying on the platform's preemptive thread scheduler to work properly. You should instead call the Thread.yield() static method in your worker threads when they are done with whatever important sections of code they are running. This is a good habit to get into even when you are using different levels of thread priority.

    0 讨论(0)
  • 2020-11-27 20:41

    You have a setPriority() method in the Thread class.

    Check this javadoc.

    Setting thread priority to maximum:

    public static void main(String args[]) {
        Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
        // Your main code.
    }
    
    0 讨论(0)
  • 2020-11-27 20:45

    you can use the setPriority() method. For example:

    new MyThread("Foo").start(); 
    Thread bar = new MyThread("Bar"); 
    bar.setPriority( Thread.NORM_PRIORITY + 1 ); 
    bar.start();
    

    This gives bar the new priority which should quickly take over Foo

    Edit:

    To answer your comment, you can set the max priortiy using:

    bar.setPriority( Thread.MAX_PRIORITY );
    
    0 讨论(0)
  • 2020-11-27 20:52

    As others already answered, you can indeed set a priority to a thread as follows:

    Thread.currentThread().setPriority(priority);
    

    But please be aware, in your example, that thread priority has nothing to do in which order threads get access to a synchronized object. Java uses other criteria to give access. See for example this.

    0 讨论(0)
提交回复
热议问题