Threads - ( , -, ).
Thread.start() Thread, ( , , , ) java-. , firstThread.start() ( ).
(, zeroThread)
public static void main(String[] args)
, , Thread.sleep().
firstThread.start();
, , , firstThread.
, , :
:
public static void main(String[] args)
{
MyThread t1= new MyThread("Thread started");
Thread firstThread= new Thread(t1);
firstThread.start();
firstThread.join();
System.out.println("Bye");
}
join(), firstThread ( ), , ( , System.out.println( " " );.)