How many threads are need to run JVM

Showing Answers 1 - 3 of 3 Answers

manjunath hs

  • Sep 13th, 2006
 

The JVM is a single main thread. It is a user thread.(remember there are two types of threads- user and deamon threads). When this user thread ends, all other deamon threads will terminate- this is an inference...

anil patil

  • Oct 1st, 2006
 

jvm run on single thread but it ll create more child thread depending up operating system. if u deeply go into jvm u can find function like classloader, import and packaging. which require threads to create.

  Was this answer useful?  Yes

surya

  • Nov 6th, 2006
 

only one thread is needed i.e main but main thread is not user thread it is deamon thread

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions