![]() |
VOOZH | about |
An array is a collection of items stored at contiguous memory locations. The idea is to store multiple items of the same type together. This makes it easier to calculate the position of each element by simply adding an offset to a base value, i.e., the memory location of the first element of the array (generally denoted by the name of the array). Arrays are used to store homogeneous data. The conventional way of storing the elements in an array and reading the elements from an array takes a lot of time if there are numerous elements.
Writing and reading elements in an array is a small problem where each element is first added to the array and then the entire array is read element by element and printed on the console. But when the number of elements is too large, it could take a lot of time. But this could be solved by dividing the writing and reading tasks into parts.
This could be done by using multi-threading where each core of the processor is used. In this case, two threads are used, where one thread is responsible for writing to the array and the other thread is responsible for reading the array. In this way, the performance of a program can be improved as well as the cores of the processor can be utilized. It is better to use one thread for each core. Although one can create as many threads as required for a better understanding of multi-threading.
This article focuses on writing and reading the elements of the array using the concept of multithreading.
Approach: This section states the algorithm that is followed to design a program to writing and read elements of an array using multithreading:
Below is the Java program to implement the above approach-
Output:
Explanation: Here, firstly the write thread is started and at that time read thread will not interfere as the array is synchronized. Similarly, during reading, write thread will not interfere.