answersLogoWhite

0

class NewThread implements Runnable { String name; Thread t; NewThread(String threadname) { name=threadname; t=new Thread(this,name); System.out.println("New Thread:"+t); t.start(); } public void run() { try { for(int i=5;i>0;i--) { System.out.println(name+ ":"+i); Thread.sleep(1000); } } catch(InterruptedException e) { System.out.println(name+" Interrupted"); } System.out.println(name+" exiting"); } } class MultiThreadDemo { public staticvoid main(String[] args) { new NewThread("One"); new NewThread("Two"); new NewThread("Three"); try { Thread.sleep(10000); } catch(InterruptedException e) { System.out.println("Main Thread Interrupted"); } System.out.println("Main Thread Exiting"); } }

Output:

New Thread :Thread[One,5,main]

New Thread : Thread[Two,5,main]

One:5

Two:5

New Thread : Thread[Three,5,main]

Three:5

One:4

Three:4

Two:4

One:3

Three:3

Two:3

One:2

Three:2

Two:2

One:1

Three:1

Two:1

One exiting

Three exiting

Two exiting

Main Thread Exiting

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Write a c program for creating a virus?

a c program for creat a virus


First step you should take when creating a program?

The first step you should take when creating a program is to write an algorithm for it. An algorithm is a programming tool that offers a step by step solution to a programming problem.


When an English teacher tells you to write threads on a story what does that mean?

threads = to recurring elements


Can you have multiple main method in the same class?

according to my knowledge it is no a main can have multiple classes but a class cannot have multiple mains...main indicates the beginning of a program and if we have n number of mains then the compiler will show an error in all the main program that we write


How to write program for secant method in mathematica?

How to write a program for secant method by mathematica


How do you write Square program using vb?

write a vb program to find the magic square


Write a program to multiply 33 matrix.?

write a program to multily 3*3 matrix.


Write a program in Lex to eliminate white space and collect numbers as a token?

write a lex program to delete space from the program


Write a program to create a maze?

this is to write or create


Write a program to illustrate the usage of pointers with arrarys and functions?

* * * * * * * * * * write the c++ program and show me brifily?


Write a sample program using ASPNET explaining all the syntax and semantics of the program?

write a sample program using asp.net explaining all the syntax and semantics of the program


Where do we write main function in a c program?

Into the source program.