Q:

Scala program to demonstrate the join() method of Thread class

belongs to collection: Scala Threading Programs

0

Here, we will demonstrate the join() method of the Thread class. The join() method waits for a thread to die.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate the join() method of the Thread class is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to demonstrate the
// thread.join() method

class MyThread extends Runnable {
  override def run() {
    var cnt: Int = 0;

    while (cnt < 5) {
      printf("Counter: %d\n", cnt);
      Thread.sleep(500);
      cnt = cnt + 1;
    }
  }
}

object Sample {
  // Main method
  def main(args: Array[String]) {
    var ex = new MyThread();
    var thrd1 = new Thread(ex);
    var thrd2 = new Thread(ex);
    var thrd3 = new Thread(ex);

    thrd1.start();
    thrd1.join();
    thrd2.start();
    thrd3.start();
  }
}

Output:

Counter: 0
Counter: 1
Counter: 2
Counter: 3
Counter: 4
Counter: 0
Counter: 0
Counter: 1
Counter: 1
Counter: 2
Counter: 2
Counter: 3
Counter: 3
Counter: 4
Counter: 4

Explanation:

Here, we created a class MyThread by implementing the Runnable interface and the implement run() method.

We created a class MyThread by implementing the Runnable interface and implement the run() method. In this method, we used the Thread.sleep() method to sleep a thread for a specific time.

In the main() function, we created three threads. And, we called the start() method to start the execution of the thread and also called the join() method. The join() method waits for a thread to die.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Scala program to set and get the name of the threa... >>
<< Scala program to sleep a thread...