Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| ||||
Core Java - Interview Questions and Answers for 'Thread creation' - 1 question(s) found - Order By Newest | ||||
| ||||
Ans. ThreadFactory is an interface that is meant for creating threads instead of explicitly creating threads by calling new Thread(). Its an object that creates new threads on demand. Using thread factories removes hardwiring of calls to new Thread, enabling applications to use special thread subclasses, priorities, etc. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  java   threads   multi threading   thread factory   thread creation   advanced expert | ||||
Related Questions | ||||
Which keyword is used to provide explicit access of a code block to single thread ? a. Transient b. Final c. Explicit d. Synchronized | ||||
Can constructors be synchronized in Java ? | ||||
Explain multithreading in Java ? | ||||
What is a Deadlock ? | ||||
Why Struts 1 Classes are not Thread Safe whereas Struts 2 classes are thread safe ? | ||||
Explain Thread States ? | ||||
Why do we need Thread class even in case we execute thread using runnable interface ? | ||||
What is the difference between time slicing and preemptive scheduling ? | ||||
Difference between Process and Thread ? | ||||
What is race condition ? | ||||