Home »
Ruby »
Ruby Programs
Ruby program to create a simple thread
Ruby Example: Write a program to create a simple thread.
Submitted by Nidhi, on February 13, 2022
Problem Solution:
In this program, we will create a method and bind created method with thread using Thread.new() and execute created thread.
Program/Source Code:
The source code to create a simple thread is given below. The given program is compiled and executed on Windows 10 Operating System successfully.
# Ruby program to create
# a simple thread
# Thread method
def ThreadFun()
puts "Thread executed";
end
# Create a thread
t = Thread.new{ThreadFun()};
# Join created thread.
t.join();
puts "Program finished";
Output:
Thread executed
Program finished
Explanation:
In the above program, we created a method ThreadFun(). Then we created an object of the Thread class and bind with the method ThreadFun(). After that, we joined the created thread for execution and printed the "Thread executed" message. At last, we printed the "Program finished" message.
Ruby Threading Programs »