Multiple Thread
Multi-threading means a program or a process running many tasks concurrently (at the same time and parallel).
- For Example: When you working in MS-Word and other tasks concurrently working such as spell checker, auto save and print and so on.
- Several multiple lightweight processes are run in a single process/task or program by a single processor.
Multiple Thread using Thread Class:
Example:
Output:
Multiple Thread using Runnable Interface:
Example:
Output:
Tags:
Java