madhawaseeeee

thread implement

Sep 18th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1.   public class MyThread extends Thread {
  2.  
  3.     public void run(){
  4.        System.out.println("MyThread running");
  5.     }
  6.   }
  7.  
  8. //psvm
  9.  
  10.  MyThread myThread = new MyThread();
  11.  myTread.start();
Advertisement
Add Comment
Please, Sign In to add comment