Tuesday 19 February 2019

Multithreading in Java

Multithreading in Java

Multithreading in java is a process of executing multiple threads simultaneously.

A thread is a lightweight sub-process, the smallest unit of processing. Multiprocessing and multithreading, both are used to achieve multitasking.

However, we use multithreading than multiprocessing because threads use a shared memory area. They don't allocate separate memory area so saves memory, and context-switching between the threads takes less time than process.

Java Multithreading is mostly used in games, animation, etc.

Advantages of Java Multithreading
1) It doesn't block the user because threads are independent and you can perform multiple operations at the same time.

2) You can perform many operations together, so it saves time.

3) Threads are independent, so it doesn't affect other threads if an exception occurs in a single thread.


Multitasking


Multitasking is a process of executing multiple tasks simultaneously. We use multitasking to utilize the CPU. Multitasking can be achieved in two ways:

Process-based Multitasking (Multiprocessing)
Thread-based Multitasking (Multithreading)
1) Process-based Multitasking (Multiprocessing)
Each process has an address in memory. In other words, each process allocates a separate memory area.
A process is heavyweight.
Cost of communication between the process is high.
Switching from one process to another requires some time for saving and loading registers, memory maps, updating lists, etc.
2) Thread-based Multitasking (Multithreading)
Threads share the same address space.
A thread is lightweight.
Cost of communication between the thread is low.
Note: At least one process is required for each thread.
What is Thread in java
A thread is a lightweight subprocess, the smallest unit of processing. It is a separate path of execution.

Threads are independent. If there occurs exception in one thread, it doesn't affect other threads. It uses a shared memory area.


  Java Multithreading


Java Multithreading


As shown in the above figure, a thread is executed inside the process. There is context-switching between the threads. There can be multiple processes inside the OS, and one process can have multiple threads.

Note: At a time one thread is executed only.

Java Thread class

Java provides Thread class to achieve thread programming. Thread class provides constructors and methods to create and perform operations on a thread. Thread class extends Object class and implements Runnable interface.


Java Thread Methods

S.N.Modifier and TypeMethodDescription
1)voidstart()It is used to start the execution of the thread.
2)voidrun()It is used to do an action for a thread.
3)static voidsleep()It sleeps a thread for the specified amount of time.
4)static ThreadcurrentThread()It returns a reference to the currently executing thread object.
5)voidjoin()It waits for a thread to die.
6)intgetPriority()It returns the priority of the thread.
7)voidsetPriority()It changes the priority of the thread.
8)StringgetName()It returns the name of the thread.
9)voidsetName()It changes the name of the thread.
10)longgetId()It returns the id of the thread.
11)booleanisAlive()It tests if the thread is alive.
12)static voidyield()It causes the currently executing thread object to pause and allow other threads to execute temporarily.
13)voidsuspend()It is used to suspend the thread.
14)voidresume()It is used to resume the suspended thread.
15)voidstop()It is used to stop the thread.
16)voiddestroy()It is used to destroy the thread group and all of its subgroups.
17)booleanisDaemon()It tests if the thread is a daemon thread.
18)voidsetDaemon()It marks the thread as daemon or user thread.
19)voidinterrupt()It interrupts the thread.
20)booleanisinterrupted()It tests whether the thread has been interrupted.
21)static booleaninterrupted()It tests whether the current thread has been interrupted.
22)static intactiveCount()It returns the number of active threads in the current thread's thread group.
23)voidcheckAccess()It determines if the currently running thread has permission to modify the thread.
24)static booleanholdLock()It returns true if and only if the current thread holds the monitor lock on the specified object.
25)static voiddumpStack()It is used to print a stack trace of the current thread to the standard error stream.
26)StackTraceElement[]getStackTrace()It returns an array of stack trace elements representing the stack dump of the thread.
27)static intenumerate()It is used to copy every active thread's thread group and its subgroup into the specified array.
28)Thread.StategetState()It is used to return the state of the thread.
29)ThreadGroupgetThreadGroup()It is used to return the thread group to which this thread belongs
30)StringtoString()It is used to return a string representation of this thread, including the thread's name, priority, and thread group.
31)voidnotify()It is used to give the notification for only one thread which is waiting for a particular object.
32)voidnotifyAll()It is used to give the notification to all waiting threads of a particular object.
33)voidsetContextClassLoader()It sets the context ClassLoader for the Thread.
34)ClassLoadergetContextClassLoader()It returns the context ClassLoader for the thread.
35)static Thread.UncaughtExceptionHandlergetDefaultUncaughtExceptionHandler()It returns the default handler invoked when a thread abruptly terminates due to an uncaught exception.
36)static voidsetDefaultUncaughtExceptionHandler()It sets the default handler invoked when a thread abruptly terminates due to an uncaught exception.

No comments:

Post a Comment

Unity Top Download

Latest post

An Introduction to Hybris from basics

An Introduction to Hybris from basics:  -- ecommerce site and PCM(Product content Management) solutions. eg. croma website.  -- having sear...

Popular posts