Multitasking:
Multitasking is a way of executing multiple tasks during the same period of time. Multiple tasks use common resources like CPU and main memory.
With a single CPU only one task can be running at one point of time, so CPU uses context switching to perform multitasking. Context switch (Context means state) is the process of storing and restoring the state of a process so that execution can be resumed from the same point at a later time.
Types of Multitasking:
    1. Multiprocessing.
    2. Multithreading.
Multiprocessing:
Multiprocessing is a type of multitasking based upon processes i.e. context switching is done in-between processes. For example: Typing in notepad, Listening music and downloading file from internet at the same time. Here in example we can clearly see that all applications are independent. Multiprocessing is the type of multitasking which is handled at operating system level.
Process:
A process has a self-contained execution environment i.e. allocates separate memory area. Context switch time is more in case of processes because switch is done between different memory areas.
Multithreading:
Multithreading is a type of multitasking based upon threads i.e. context switching is done in-between threads. In case of multithreading, multiple independent tasks are executed simultaneously. These independent tasks are the part of same application. Multithreading is the type of multitasking which is handled at program level.
Thread:
A thread is a lightweight process. Thread uses process’s execution environment i.e. memory area. Context switch time is less in case of threads because switch is done within the same process’s memory area.
A thread represents a flow of execution. Every thread has a job associated with it.
Note: A thread can’t be exist without process, it exist within the process.
Difference between process and thread in java:
                      Process |                         Thread |
|
|
Java Multithreading tutorial:
- Thread life cycle in java.
- Way of creating thread in java.
- Which is a better way to create a thread in java?
- Methods of Thread class.
- Difference between thread start and run method.
- Why we call start method in thread?
- Can we override start method?
- Can we override run method?
- Is it possible to start a thread twice in java?
- Thread scheduling
- Thread priority
- Naming a thread
- What is join method in java?
- How to get current thread in java?
- Daemon thread
- Can we call run method directly in java?
- What is the difference between sleep and yield method?
- Deadlock
- Starvation
- Inter-thread communication
- Synchronization
- Synchronized method
- Static synchronization
- Synchronized block
Java concurrency tutorial
- Concurrency in java
- Concurrency issues
- Concurrency solutions
- Reentrantlock in java
- Readwritelock in java
- Semaphore in java
- Countdownlatch in java
- Exchanger in java
- Atomic variable in java
- Atomic boolean
- Atomic integer
- Atomic long
- Atomic integer array
- Atomic long array
- Thread pool in java
- Thread group in java
- Shutdown hook in java
- Executor framework
- Fork join in java
- Callable and Future
- Runnable vs Callable