Click here to watch in Youtube :
Click the below Image to Enlarge
 |
| Java Tutorial : Java Threads (How to create a thread in java | Thread creation in java) |
 |
| Java Tutorial : Java Threads (How to create a thread in java | Thread creation in java) |
DisplayThread.javaclass DisplayThread extends Thread
{
public static void main(String args[])
{
/*
* Allocates a new Thread object.
*/
DisplayThread displayThread = new DisplayThread();
/*
* Causes this thread to begin execution; the Java
* Virtual Machine calls the run method of this
* thread
*/
displayThread.start();
}
/*
* Subclasses of Thread should override run() method.
*/
@Override
public void run()
{
System.out.println("Welcome to india");
}
}
OutputWelcome to india
Refer:
https://docs.oracle.com/javase/8/docs/api/index.html?java/lang/Thread.html
No comments:
Post a Comment