Ruby program to join multiple threads using each() method

Ruby Example: Write a program to join multiple threads using each() method.
Submitted by Nidhi, on February 13, 2022

Problem Solution:

In this program, we will create an array of thread objects and join created threads using each() method.

Program/Source Code:

The source code to join multiple threads using each() method is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to join multiple threads 
# using each() method

threads = []

5. times {
  threads << Thread.new {
    puts "Hello World"
  }
}

threads.each(&:join);

Output:

Hello World
Hello World
Hello World
Hello World
Hello World

Explanation:

In the above program, we created an array of thread objects for 5 threads. Then we joined created threads using the each() method and printed the "Hello World" message 5 times.

Ruby Threading Programs »


ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Top MCQs

Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.