Java Threads vs Pthreads

前端 未结 2 1792
深忆病人
深忆病人 2021-01-30 22:21

I was asked this question in an interview today.

\"When we create a thread with pthread_create() (POSIX Threads), the thread starts on its own. Why do we n

2条回答
  •  一个人的身影
    2021-01-30 23:14

    In Java not starting the thread right away leads to a better API. You can set properties on the thread (daemon, priority) without having to set all the properties in the constructor.

    If the thread started right away, it would need a constructor,

    public Thread(Runnable target, String name, ThreadGroup threadGroup, int priority, boolean daemon, ContextClassLoader contextClassLoader, long stackSize)
    

    To allow setting all these parameters before the thread started. The daemon property can't be set after the thread has started.

    I'm guessing that the POSIX API takes a struct with all the thread properties in the call to pthread_create(), so it makes sense to start the thread right away.

提交回复
热议问题