Write a multi-threading JAVA program having four threads: - The “Generator” thread: it takes as argument (in the constructor) an integer N and generates an array of N integers - The “Even” thread: it takes as argument (in the constructor) an array of integers and counts the number of even numbers in the array - The “Odd” thread: it takes as argument (in the constructor) an array of integers and count the number of odd numbers in the array - The main thread:
10.
Write a multi-threading JAVA program having four threads:
- The “Generator” thread: it takes as argument (in the constructor) an
integer N and generates an array of N integers
- The “Even” thread: it takes as argument (in the constructor) an array of
integers and counts the number of even numbers in the array
- The “Odd” thread: it takes as argument (in the constructor) an array of
integers and count the number of odd numbers in the array
- The main thread:
o it asks the user to enter an integer N
o Then, it runs the “Generator” thread to create an array of integers
and waits the end of “Generator”
o Then, it run “Even” and “Odd” to count the number of even and
odd numbers in the generated array
o Finally, it prints if there is more even or odd numbers
Note: the main thread should wait the end of “Even” and “Odd”
threads before printing the final result.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps