What is daemon thread?
Answers were Sorted based on User's Feedback
Answer / janet
daemon thread is a low priority thread which runs
intermittently in the back ground doing the garbage
collection operation for the java run time system.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / manikandan [ gtec,vellore ]
what said above is correct and it can b created by using
method setDemon()
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vikki
daemon threads are created by the JVM unlike normal threads
which are created by the user.
The daemon threads provides services to the user-created
threads and they run in the background.
Hence to set them u have to write threadname.setDaemon
(true) and to check whether a thread is a daemon thread or
not you write isDaemon().
| Is This Answer Correct ? | 2 Yes | 0 No |
Will the general public have access to the infobus apis?
What is preemptive and Non-preemptive Time Scheduling?
when we applied start()method on a thread ,how does it know that to execute run()method on that object?
What is in-memory replication?
what is difference between checked exception & unchecked exception in java?
Describe, in general, how java's garbage collector works?
Difference between DurableSubscription and non- DurableSubscription?
i want documentation of text file splitter & merger of advanced java
can any one tell me how to learn good coding techniques
What class is the top of the awt event hierarchy?
When a thread blocks on i/o?
On a computer that having single CPU, how multithreading concept can be achieved?