This tutorial on thread simple explains the basics of them and other important concepts in the thread area.
A thread in java in simple terms is a path of execution within a java program.
Each program in java or every single process in java runs using a thread. In java, every thread has its own lifecycle.
In java, a single program can have any number of threads that can run concurrently and perform complex concurrent operations.
The above explanation is the basic of threads. Below is the list of other concepts of thread in java that I have explained or implemented on my blog.
A thread in java in simple terms is a path of execution within a java program.
Each program in java or every single process in java runs using a thread. In java, every thread has its own lifecycle.
In java, a single program can have any number of threads that can run concurrently and perform complex concurrent operations.
The above explanation is the basic of threads. Below is the list of other concepts of thread in java that I have explained or implemented on my blog.
Other references on threads |
---|
Difference between sleep and wait in java |
Lifecycle of thread |
Difference between yield and sleep in java |
Thread creation in java |
No comments:
Post a Comment