Write a Java program to display "Hello Java" 50 times using multithreading.


Write a Java program to display "Hello Java" 50 times using multithreading.



Program:
import java.lang.*;

class HelloThread extends Thread {
    public HelloThread(String name) {
        super(name);
    }

    public void run() {
        try {
            for(int i=0;i<25;i++){
                System.out.println(Thread.currentThread().getName()+"Hello");
                sleep(500);
            }
        } catch(InterruptedException ie){
            System.out.println(ie);
        }
    }
}

public class ThreadMain {
    public static void main(String args[]){
        HelloThread t = new HelloThread("My Thread");
        t.start();
        try{
            for(int i=0;i<25;i++){
                System.out.println(Thread.currentThread().getName()+"Hello");
                Thread.sleep(500);
            }
        } catch(InterruptedException e) {
            System.out.println(e);
        }
    }
}

Post a Comment

Previous Post Next Post