Q:

Scala program to check a thread is alive or not

belongs to collection: Scala Threading Programs

0

Here, we will create a class by extending the Thread class and implement the run() method. And, we will check a created thread is alive or not using the isAlive() method. The isAlive() method return true if thread is alive. Otherwise, it returns false.

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 check a thread is alive or not is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to check a
// thread is alive or not

class MyThread extends Thread {
  override def run() {
    println("Thread is running");
  }
}

object Sample {
  // Main method
  def main(args: Array[String]) {
    var thrd = new MyThread();

    thrd.start();

    if (thrd.isAlive())
      println("Thread is alive");
    else
      println("Thread is not alive");
  }
}

Output:

Thread is alive
Thread is running

Explanation:

Here, we used an object-oriented approach to create the program. And, we created an object Sample.

Here we created a class MyThread by extending the thread class and implement the run() method.

And, we also created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.

In the main() function, we created an object of the MyThread class and start the execution of the thread. And, we checked created thread is alive or not. Then we printed the appropriate message on the console screen.

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 priority of the t... >>
<< Scala program to print the state of the thread...