Here i try to learn java thread clearlly.. On which process JVM create the thread.
Suppose if i create a thread in java then how JVM create this thread? To whom it will send to exicute?.. Which one is the base process for this…
Here i try to learn java thread clearlly.. On which process JVM create the
Share
Actually the Java Virtual Machine Specification does not specify how threads are to be handled by a JVM. There is only a high level description. The Sun JVM itself made a change in this regard: Up to Java 1.1 it used so called Green Threads that are managed by the JVM itself. Later it used native threads that the host operating system provides.