| Author |
Parallel for-loop in java
|
Prabhjot Jassal
Greenhorn
Joined: Jul 19, 2010
Posts: 22
|
|
I am new to concurrency and would be thankful if someone could help.
I wrote the following code which has 2 arrays and in the 3rd array I am storing the answer of corresponding 1st and 2nd array. Can someone please tell me how to make it run in parallel? If possible please tell me 2 methods - 1. Using Threads and 2. Using Java 5 or 6 concurrent library. Thanks
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16680
|
|
The Sun tutorial should be a good place to start learning about threads (and the concurrency package)...
http://download.oracle.com/docs/cd/E17409_01/javase/tutorial/essential/concurrency/
This isn't a subject that you can learn from one example, posted in a forum topic.
Henry
|
Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
|
 |
 |
|
|
subject: Parallel for-loop in java
|
|
|