Skip to content

Instantly share code, notes, and snippets.

@harshityadav95
Created July 19, 2018 11:19
Show Gist options
  • Save harshityadav95/7e74e99d3d5b61358bb98dff8499827a to your computer and use it in GitHub Desktop.
Save harshityadav95/7e74e99d3d5b61358bb98dff8499827a to your computer and use it in GitHub Desktop.
class MultithreadingDemo extends Thread{
public void run(){
System.out.println("My thread is in running state.");
}
public static void main(String args[]){
MultithreadingDemo obj=new MultithreadingDemo();
obj.start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment