| Author |
4 Threads Synchronized
|
Mg Oo
Greenhorn
Joined: Nov 28, 2004
Posts: 22
|
|
Please help me with the following quizz. ---------------------------------- A Java Program uses four threads. The first three threads each read a text file and count the number of times that a given word is used in the text file. The words which are to be counted are provided on a command line as shown when the execution of the program is initiated : : java countIt hello world me The above line shows that countIt is the program being executed. The first thread object counts the word 'hello, the second 'world' and the third 'me' Each of the thread objects communicates its findings to the fourth thread object which displays the results in a JTextArea as below : : hello 4 world 9 me 3 Note that the words appear in alphabetical order. --------------------------------------------------- The same functions for three threads ? Synchronized four threads or synchronised after three threads job done ? or Fourth threads Monitar execution of each thread ? Thanks. [ April 19, 2006: Message edited by: Mg Oo ]
|
 |
Joanne Neal
Rancher
Joined: Aug 05, 2005
Posts: 3011
|
|
|
What was wrong with the answers you got the first time you asked this question ?
|
Joanne
|
 |
 |
|
|
subject: 4 Threads Synchronized
|
|
|