×

Loading...

One more word

The implementations of Java Virtual Machines, roughly pseaking,
falls into two categories. One uses the native threads, another creates its green threads in itself.

Actually, it is very easy to make people understand what a process is. But
many senior programmer, even though they have 20 years expereinces, cannot do robust Multithreading programming. If one want's to do robust Java programming, he/she at least read one of the following books:
1) Java Threads from Oreilley; 2) Taming Java Threads. Without good understanding, people can easily get into the following problem: deadlock and CPU startvation. Task scheduling is by no means an easy topic we can clarify during the discussion here.
Report