> Does Java offer any accommodation for parallel processing?
Yes. Consult the Javadoc for java.lang.Thread and
java.lang.Runnable.

Signature
Eric.Sosman@sun.com
Sebastian Scheid - 11 Sep 2004 16:43 GMT
>> Does Java offer any accommodation for parallel processing?
>
> Yes. Consult the Javadoc for java.lang.Thread and
> java.lang.Runnable.
And have a look at Doug Lea's book "Concurrent Programming in Java: Design
Principles and Patterns". Martin Fowler's explanation about it: "The
compiler should stop anyone implementing Runnable who hasn't read this
book.".
Sebastian