1

このコードを実行するとIllegalArgumentException、 が表示され、コード全体が実行されましたが、スレッド t の名前はデフォルトの名前のみで、コードに従ってマークされていませんでした。

その理由は何ですか?

    Exception in thread "main" java.lang.IllegalArgumentException
        at java.lang.Thread.setPriority(Unknown Source)
        at Threads.CurrentThreadImpl.main(CurrentThreadImpl.java:11)
    value of I is : 0and the thread name is : Thread-0
    value of I is : 1and the thread name is : Thread-0
    value of I is : 2and the thread name is : Thread-0
    value of I is : 3and the thread name is : Thread-0
    value of I is : 0and the thread name is : Thread-1
    value of I is : 1and the thread name is : Thread-1
    value of I is : 2and the thread name is : Thread-1
    value of I is : 3and the thread name is : Thread-1

    public class CreateThread implements Runnable{

    public void run(){
        for(int i = 0; i<4; i++){
            System.out.println("value of I is : "+ i + "and the thread name is : "+ Thread.currentThread().getName());
        }
    }
}

    public class CurrentThreadImpl {

    public static void main(String[] args) {
        CreateThread runnableObj = new CreateThread();
        Thread thread = new Thread(runnableObj);
        Thread t = new Thread(runnableObj);
        thread.start();
        t.start();
        thread.setPriority(0);
        t.setPriority(10);
        t.setName("Mark");
    }

}
4

2 に答える 2

4

優先順位は 1 から 10 までです。

Thread.MIN_PRIORITY (1)
Thread.NORM_PRIORITY (5)
Thread.MAX_PRORITY (10)
于 2013-09-22T13:08:09.497 に答える