How is default new thread name given in java?

前端 未结 4 1725
无人及你
无人及你 2020-12-11 03:55

When I run this program

public class Fabric extends Thread {
    public static void main(String[] args) {
        Thread t1 = new Thread(new Fabric());
              


        
相关标签:
4条回答
  • 2020-12-11 04:34
    new Thread(new Fabric());
    

    Since Fabric is a Thread, you created 2 threads here :)

    JDK8 code:

    /* For autonumbering anonymous threads. */
    private static int threadInitNumber;
    private static synchronized int nextThreadNum() {
        return threadInitNumber++;
    }
    
    0 讨论(0)
  • 2020-12-11 04:43

    The default numeric value in the Thread name is an incremented value unless the name is specified when creating the Thread. Fabric extends Thread, and you are passing the Fabric instance to create another Thread - thus the internal Thread counter is incremented twice as 2 threads are created during the process.

    0 讨论(0)
  • 2020-12-11 04:53

    As others have pointed out, it's just an incrementing counter.

    The reason why your log file does not print your thread names in order, is because java does not guarentee the order of execution of the started threads.

    If you want to force the order, then you have to make the threads wait for eachother. A possible way to do this, is using a CountDownLatch.

    private static CountDownLatch latch;
    
    public static void main(String[] args) throws InterruptedException {
        Thread t1 = new Thread(new Fabric());
        Thread t2 = new Thread(new Fabric());
        Thread t3 = new Thread(new Fabric());
    
        // the countdown starts at 1.
        latch = new CountDownLatch(1);
        t1.start();
        // the thread will wait till the countdown reaches 0. 
        latch.await();
    
        latch = new CountDownLatch(1);
        t2.start();
        latch.await();
    
        latch = new CountDownLatch(1);
        t3.start();
        latch.await();
    }
    public void run() {
        for(int i = 0; i < 2; i++)
          System.out.print(Thread.currentThread().getName());
    
      // thread is done: set counter to 0.
      latch.countDown();
    }
    

    On the other hand, some classes use a ThreadFactory to assign thread names. (e.g. a ScheduledThreadPoolExecutor). For example the DefaultThreadFactory creates its thread names as follows:

    String namePrefix = "pool-" + poolNumber.getAndIncrement() + "-thread-";
    String threadName = namePrefix + threadNumber.getAndIncrement()
    
    0 讨论(0)
  • 2020-12-11 05:00

    If you change the program like given below you will get the thread numbering in sequence.

        public class Fabric extends Thread {
        public static void main(String[] args) {
            Thread t1 = new Fabric();
            Thread t2 = new Fabric();
            Thread t3 = new Fabric();
            t1.start();
            t2.start();
            t3.start();
        }
        public void run() {
            for(int i = 0; i < 2; i++)
                System.out.print(Thread.currentThread().getName() + " ");
        }
    }
    

    and the output is

    Thread-0 Thread-2 Thread-2 Thread-1 Thread-0 Thread-1
    
    0 讨论(0)
提交回复
热议问题