Run »
×
Change Orientation
public class Main implements Runnable { public static void main(String[] args) { Main obj = new Main(); Thread thread = new Thread(obj); thread.start(); System.out.println("This code is outside of the thread"); } public void run() { System.out.println("This code is running in a thread"); } }
This code is outside of the thread
This code is running in a thread
×
Report a Problem:
Your E-mail:
Page address:
Description:
Submit