SlideShare una empresa de Scribd logo
1 de 44
GLSICT MCA Sem-III
Multithreading
Presented By :-
Shraddha Sheth
What is Thread?
 A thread is a single sequential flow of control
within a program.
 Thread does not have its own address space but
uses the memory and other resources of the
process in which it executes.
 There may be several threads in one process
 The Java Virtual Machine (JVM) manages these
and schedules them for execution.
What is Multithreading ?
 Multithreading is a conceptual programming
paradigm where a program (process) is divided
into two or more subprograms (process), which
can be implemented at the same time in parallel.
 For example, one subprogram can display an
animation on the screen while another may build
the next animation to be displayed.
 A program that contains multiple flow of control is
known as multithreaded program.
Cont..
 Since threads in java are subprograms of a main
application program and share the same memory
space, they are known as lightweight threads or
lightweight processes.
 ‘threads running in parallel’ does not really mean
that they actually run at the same time.
 Since all the threads are running on a single
processor, the flow of execution is shared between
the threads. The java interpreter handles the
switching of control between the threads in such a
way that it appears they are running concurrently.
Cont..
 Multithreading enables programmers to do multiple
things at one time.
 For ex, we can send tasks such as printing into the
background and continue to perform some other
task in the foreground.
 Threads are extensively used in java-enabled
browser such as HotJava. These browsers can
download a file to the local computer, display a web
page in the window, output another web page to a
printer and so on.
 The ability of a language to support multithreads is
referred to as concurrency.
A Single Threaded Program
class ABC
{
……….
...……..
……….
...……..
……….
...……..
}
Beginning
Single-threaded
Body of
Execution
End
A Multithreaded Program
start start start
switchingswitching
Main Method
Module
Thread Life Cycle
 During the life time of a thread, there are many
states it can enter. They include:
1. Newborn state
2. Runnable State
3. Running State
4. Blocked State
5. Dead State
1. Newborn State
 When we create a thread object, the thread is born
and is said to be in newborn state. The thread is not
yet scheduled for running. At this state, we can do
only one of the following with it:
Schedule it for running using start() method.
Kill it using stop() method
 If scheduled, it moves to the runnable state. If we
attempt to use any other method at this stage, an
exception will be thrown.
Scheduling a Newborn Thread
Newborn
Runnable
State
Dead
State
start stop
2. Runnable state (start())
 The runnable state means that the thread is ready
for execution and is waiting for the availability of the
processor.
 That is, the thread has joined the queue of threads
that are waiting for execution.
 If all threads have equal priority, then they are given
time slots for execution in round robin fashion. i.e.
first-come, first-serve manner.
Cont..
 The thread that relinquishes control joins the queue
at the end and again waits for its turn. This process
of assigning time to threads is known as time-
slicing.
 If we want a thread to relinquish control to another
thread of equal priority before its turn comes, we
can do so by using the yield() method.
Releasing Control Using yield()
……...... ……......
yield()
Running Thread Runnable Thread
3. Running State
 Running means that the processor has given
its time to the thread for its execution.
 The thread runs until it relinquishes control on
its own or it is preempted by a higher priority
thread.
 A running thread may relinquish its control in
one of the following situations:
1. Suspend() and resume() Methods:-
This approach is useful when we
want to suspend a thread for some time due
to certain reason, but do not want to kill it.
Running Runnable Suspended
suspended
resume
2. Sleep() Method :-
This means that the thread is out of
the queue during this time period. The thread
re-enter the runnable state as soon as this
time period is elapsed.
Running Runnable Sleeping
sleep(t)
3. Wait() and notify() methods :- blocked
until certain condition occurs
Running Runnable Waiting
wait
notify
4. Blocked State
 A thread is said to be blocked when it is prevented
form entering into the runnable state and
subsequently the running state.
 This happens when the thread is suspended,
sleeping, or waiting in order to satisfy certain
requirements.
 A blocked thread is considered “ not runnable” but
not dead and therefore fully qualified to run again.
5. Dead State
 A running thread ends its life when is has completed
executing its run() method. It is a natural death.
 However, we can kill it by sending the stop message
to it at any state thus causing a premature death to
it.
 A thread can be killed as soon it is born, or while it is
running, or even when it is in “not runnable”
(blocked) condition.
State diagram of a thread
yield
Newborn
start
stop
stop
stop
suspended
sleep
wait
resume
notify
Blocked
Dead
Running RunnableActive
Thread
New
Thread
Idle Thread
(Not Runnable)
Killed
Thread
join() method :-
 The join method allows one thread to wait for the
completion of another.
 If t is a Thread object whose thread is currently
executing, t.join(); causes the current thread to
pause execution until t's thread terminates.
 Overloads of join allow the programmer to specify a
waiting period. However, as with sleep, join is
dependent on the OS for timing, so you should not
assume that join will wait exactly as long as you
specify.
 Like sleep, join responds to an interrupt by exiting
with an InterruptedException Example
Creating Threads
 Thread class in the java.lang package allows you to
create and manage threads. Each thread is a
separate instance of this class.
 A new thread can be created in two ways:
1. By extending a thread class
2. By implementing an interface
Extending the Thread class
 We can directly extend the Thread class
class Threadx extends Thread
{
public void run()
{
//logic for the thread
}
}
 The class ThreadX extends Thread. The logic for
the thread is contained in the run() method.
Cont..
 It can create other objects or even initiate
other threads.
Example
Implementing Runnable
Interface
 Declare a class that implements the Runnable interface.
 This method declares only one method as shown here:
public void run();
class RunnableY implements Runnable
{
Public vod run()
{
// logic for thread
}
}
Cont..
 The application can start an instance of the thread
by using the following code:
RunnableY ry = new RunnableY();
ThreadY ty= new Thread(ry);
Ty.start();
 1st line instantiate the RunnableY class.
 2nd line instantiate the Thread class. A reference to
the RunnableY object is provided as the argument to
the constructor.
 Last line starts the thread.
Example
Stopping a Thread
 Whenever we want to stop a thread form running
further, we may do so by calling its stop() method
like:
ty.stop();
 The stop() method may be used when the premature
death of a thread is desired
Blocking a Thread
 A thread can also be temporarily suspended or
blocked form entering into the runnable and
subsequently running state by using either of the
following thread methods:
 Sleep() – blocked for a specified time.
 Suspend() – blocked until further orders.
 Wait() – blocked until certain condition occurs.
Cont..
 These methods cause the thread to go into the
blocked state. The thread will return to the runnable
state when the specified time is elapsed in the case
of sleep(), the resume() method is invoked in the
case of suspend(), and the notify() method is called
in the case of wait().
Thread class
 Some of the constructors for Thread are as follows:
 Thread()
 Thread(Runnable r)
 Thread(Runnable r, String s)
 Thread(String s)
 Here, r is a reference to an object that implements
the Runnable interface and s is a String used to
identify the thread.
Methods of Thread class
 Method Description
1. Thread currentThread() returns a reference to
the current thread
2. Void sleep(long msec) causes the current Throws
InterruptedException thread to wait for
msec milliseconds
3. Void sleep(long msec, int nsec) causes the current Throws
InterruptedException to wait for msec milliseconds
plus nsec nanoseconds
4. Void yield() causes the current
thread to yield control
of the processo to other
Cont..
5. String getName() returns the name of the
thread.
6. Int getPriority() returns the priority of the
thread
7. Boolean isAlive() returns true if this thread has
been started and has not
Yet died. Otherwise, returns
false.
8. Void join() causes the caller to wait until
Throws InterruptedException this thread dies.
9. Void join(long msec) causes the caller to wait a
Throws InterruptedException max of msec until this thread
dies. if msec is zero, there is
no limit for the wait time.
Cont..
10. Void join(long msec, int nsec) causes the caller to wait a
Throws Interruptedexception max of msec plus nsec until
this thread dies. If msec plus
nsec is zero, there is no limit
for the wait time.
11. Void run() comprises the body of the
thread. This method is
overridden by subclasses.
12. Void setName(String s) sets the name of this thread
to s.
13. Void setPriority(int p) sets the priority of this thread
to p.
14. Void start() starts the thread
15. String toString() Returns the string equivalent
of this thread.
Example
Thread Priority
 In java, each thread is assigned a priority, which affects the
order in which it is scheduled for running.
 Java permits us to set the priority of a thread using the
setPriority() method as follows:
ThreadName.setPriority(intNumber);
 The intNumber may assume one of these constants or any
value between 1 and 10.
 The intNumber is an integer value to which the thread’s
priority is set. The Thread class defines several priority
constants:
 MIN_PRIORITY=1
 NORM_PRIORITY=5
 MAX_PRIORITY=10
 The default setting is NORM_PRIORITY. Example
Synchronization
 When two or more threads need access to a shared
resource, they need some way to ensure that the
resource will be used by only one thread at a time.
The process by which this is achieved is called
synchronization.
 This can be done in two ways. First, a method can be
synchronized by using the synchronized keyword as
a modifier in the method declaration.
Cont..
 When a thread begins executing a synchronized
instance method, it automatically acquires a lock on
that object.
 The lock is automatically relinquished when the
method completes.
 Only one thread has this lock at any time.
 Therefore, only one thread may execute any of the
synchronized instance methods for that same object
at a particular time.
Cont..
 Another way to synchronize access to common data
is via a synchronized statement block. This has the
following syntax:
synchronized(obj)
{
//statement block
}
Example
Dead Lock
 Deadlock is an error that can be encountered in
multithreaded programs.
 It occurs when two or more threads wait for ever for
each other to relinquish locks.
 Assume that thread1 holds lock on object1 and waits
for a lock on object2. thread2 holds a lock on object2
and waits for a lock on object1. neither of these
threads may proceed. Each waits forever for the
other to relinquish the lock it needs.
Cont..
 Deadlock situations can also arise that involve more
than two threads. Assume that thread1 waits for a
lock held by thread2. thread2 waits for a lock held by
thread3. thread3 waits for a lock held by thread1.
Example
Thread Communication
 Polling is usually implemented by a loop that is used to
check some condition repeatedly. Once the condition is
true, appropriate action is taken. This wastes CPU
time.
 For example, consider the classic queuing problem,
where one thread is producing some data and another
is consuming it.
 In a polling system, the consumer would waste many
CPU cycles while it waited for the producer to produce.
Once the producer was finished, it would start polling,
wasting more CPU cycles waiting for the consumer to
finish, and so on. Clearly, this situation is undesirable.
 To avoid polling, Java includes an elegant inter-
process communication mechanism via the wait( ),
notify( ), and notifyAll( ) methods. These methods
are implemented as final methods in Object, so all
classes have them.
 All three methods can be called only from within a
synchronized method.
Example
Thank You..

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

Threads concept in java
Threads concept in javaThreads concept in java
Threads concept in java
 
Java Thread Synchronization
Java Thread SynchronizationJava Thread Synchronization
Java Thread Synchronization
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in java
 
Java thread life cycle
Java thread life cycleJava thread life cycle
Java thread life cycle
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in java
 
Java Threads
Java ThreadsJava Threads
Java Threads
 
Java threading
Java threadingJava threading
Java threading
 
Interface in java
Interface in javaInterface in java
Interface in java
 
Java exception handling
Java exception handlingJava exception handling
Java exception handling
 
9. Input Output in java
9. Input Output in java9. Input Output in java
9. Input Output in java
 
Thread model in java
Thread model in javaThread model in java
Thread model in java
 
Java Exception handling
Java Exception handlingJava Exception handling
Java Exception handling
 
String and string buffer
String and string bufferString and string buffer
String and string buffer
 
Exception handling
Exception handlingException handling
Exception handling
 
Java I/O
Java I/OJava I/O
Java I/O
 
Exception Handling
Exception HandlingException Handling
Exception Handling
 
Java abstract class & abstract methods
Java abstract class & abstract methodsJava abstract class & abstract methods
Java abstract class & abstract methods
 
Java collections concept
Java collections conceptJava collections concept
Java collections concept
 
Wrapper class
Wrapper classWrapper class
Wrapper class
 
Method Overloading in Java
Method Overloading in JavaMethod Overloading in Java
Method Overloading in Java
 

Similar a Java And Multithreading

Multithreading Introduction and Lifecyle of thread
Multithreading Introduction and Lifecyle of threadMultithreading Introduction and Lifecyle of thread
Multithreading Introduction and Lifecyle of threadKartik Dube
 
Multi threading
Multi threadingMulti threading
Multi threadinggndu
 
Multithreading
MultithreadingMultithreading
Multithreadingsagsharma
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in javaMonika Mishra
 
econtent thread in java.pptx
econtent thread in java.pptxecontent thread in java.pptx
econtent thread in java.pptxramyan49
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in javaKavitha713564
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in javaKavitha713564
 
Multithreading in Java Object Oriented Programming language
Multithreading in Java Object Oriented Programming languageMultithreading in Java Object Oriented Programming language
Multithreading in Java Object Oriented Programming languagearnavytstudio2814
 
07. Parbdhdjdjdjsjsjdjjdjdjjkdkkdkdkt.pptx
07. Parbdhdjdjdjsjsjdjjdjdjjkdkkdkdkt.pptx07. Parbdhdjdjdjsjsjdjjdjdjjkdkkdkdkt.pptx
07. Parbdhdjdjdjsjsjdjjdjdjjkdkkdkdkt.pptxnimbalkarvikram966
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in javajunnubabu
 
Multi-threaded Programming in JAVA
Multi-threaded Programming in JAVAMulti-threaded Programming in JAVA
Multi-threaded Programming in JAVAVikram Kalyani
 
Java Concurrency Starter Kit
Java Concurrency Starter KitJava Concurrency Starter Kit
Java Concurrency Starter KitMark Papis
 

Similar a Java And Multithreading (20)

Multithreading Introduction and Lifecyle of thread
Multithreading Introduction and Lifecyle of threadMultithreading Introduction and Lifecyle of thread
Multithreading Introduction and Lifecyle of thread
 
Slide 7 Thread-1.pptx
Slide 7 Thread-1.pptxSlide 7 Thread-1.pptx
Slide 7 Thread-1.pptx
 
Md09 multithreading
Md09 multithreadingMd09 multithreading
Md09 multithreading
 
Multi threading
Multi threadingMulti threading
Multi threading
 
Multithreading
MultithreadingMultithreading
Multithreading
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in java
 
Threads in Java
Threads in JavaThreads in Java
Threads in Java
 
econtent thread in java.pptx
econtent thread in java.pptxecontent thread in java.pptx
econtent thread in java.pptx
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in java
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in java
 
Multithreading in Java Object Oriented Programming language
Multithreading in Java Object Oriented Programming languageMultithreading in Java Object Oriented Programming language
Multithreading in Java Object Oriented Programming language
 
Multi threading
Multi threadingMulti threading
Multi threading
 
07. Parbdhdjdjdjsjsjdjjdjdjjkdkkdkdkt.pptx
07. Parbdhdjdjdjsjsjdjjdjdjjkdkkdkdkt.pptx07. Parbdhdjdjdjsjsjdjjdjdjjkdkkdkdkt.pptx
07. Parbdhdjdjdjsjsjdjjdjdjjkdkkdkdkt.pptx
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in java
 
Java Threads
Java ThreadsJava Threads
Java Threads
 
Java unit 12
Java unit 12Java unit 12
Java unit 12
 
Chap2 2 1
Chap2 2 1Chap2 2 1
Chap2 2 1
 
Threadnotes
ThreadnotesThreadnotes
Threadnotes
 
Multi-threaded Programming in JAVA
Multi-threaded Programming in JAVAMulti-threaded Programming in JAVA
Multi-threaded Programming in JAVA
 
Java Concurrency Starter Kit
Java Concurrency Starter KitJava Concurrency Starter Kit
Java Concurrency Starter Kit
 

Último

Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendArshad QA
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 

Último (20)

Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and Backend
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 

Java And Multithreading

  • 3.  A thread is a single sequential flow of control within a program.  Thread does not have its own address space but uses the memory and other resources of the process in which it executes.  There may be several threads in one process  The Java Virtual Machine (JVM) manages these and schedules them for execution.
  • 5.  Multithreading is a conceptual programming paradigm where a program (process) is divided into two or more subprograms (process), which can be implemented at the same time in parallel.  For example, one subprogram can display an animation on the screen while another may build the next animation to be displayed.  A program that contains multiple flow of control is known as multithreaded program.
  • 6. Cont..  Since threads in java are subprograms of a main application program and share the same memory space, they are known as lightweight threads or lightweight processes.  ‘threads running in parallel’ does not really mean that they actually run at the same time.  Since all the threads are running on a single processor, the flow of execution is shared between the threads. The java interpreter handles the switching of control between the threads in such a way that it appears they are running concurrently.
  • 7. Cont..  Multithreading enables programmers to do multiple things at one time.  For ex, we can send tasks such as printing into the background and continue to perform some other task in the foreground.  Threads are extensively used in java-enabled browser such as HotJava. These browsers can download a file to the local computer, display a web page in the window, output another web page to a printer and so on.  The ability of a language to support multithreads is referred to as concurrency.
  • 8. A Single Threaded Program class ABC { ………. ...…….. ………. ...…….. ………. ...…….. } Beginning Single-threaded Body of Execution End
  • 9. A Multithreaded Program start start start switchingswitching Main Method Module
  • 10. Thread Life Cycle  During the life time of a thread, there are many states it can enter. They include: 1. Newborn state 2. Runnable State 3. Running State 4. Blocked State 5. Dead State
  • 11. 1. Newborn State  When we create a thread object, the thread is born and is said to be in newborn state. The thread is not yet scheduled for running. At this state, we can do only one of the following with it: Schedule it for running using start() method. Kill it using stop() method  If scheduled, it moves to the runnable state. If we attempt to use any other method at this stage, an exception will be thrown.
  • 12. Scheduling a Newborn Thread Newborn Runnable State Dead State start stop
  • 13. 2. Runnable state (start())  The runnable state means that the thread is ready for execution and is waiting for the availability of the processor.  That is, the thread has joined the queue of threads that are waiting for execution.  If all threads have equal priority, then they are given time slots for execution in round robin fashion. i.e. first-come, first-serve manner.
  • 14. Cont..  The thread that relinquishes control joins the queue at the end and again waits for its turn. This process of assigning time to threads is known as time- slicing.  If we want a thread to relinquish control to another thread of equal priority before its turn comes, we can do so by using the yield() method.
  • 15. Releasing Control Using yield() ……...... ……...... yield() Running Thread Runnable Thread
  • 16. 3. Running State  Running means that the processor has given its time to the thread for its execution.  The thread runs until it relinquishes control on its own or it is preempted by a higher priority thread.  A running thread may relinquish its control in one of the following situations:
  • 17. 1. Suspend() and resume() Methods:- This approach is useful when we want to suspend a thread for some time due to certain reason, but do not want to kill it. Running Runnable Suspended suspended resume
  • 18. 2. Sleep() Method :- This means that the thread is out of the queue during this time period. The thread re-enter the runnable state as soon as this time period is elapsed. Running Runnable Sleeping sleep(t)
  • 19. 3. Wait() and notify() methods :- blocked until certain condition occurs Running Runnable Waiting wait notify
  • 20. 4. Blocked State  A thread is said to be blocked when it is prevented form entering into the runnable state and subsequently the running state.  This happens when the thread is suspended, sleeping, or waiting in order to satisfy certain requirements.  A blocked thread is considered “ not runnable” but not dead and therefore fully qualified to run again.
  • 21. 5. Dead State  A running thread ends its life when is has completed executing its run() method. It is a natural death.  However, we can kill it by sending the stop message to it at any state thus causing a premature death to it.  A thread can be killed as soon it is born, or while it is running, or even when it is in “not runnable” (blocked) condition.
  • 22. State diagram of a thread yield Newborn start stop stop stop suspended sleep wait resume notify Blocked Dead Running RunnableActive Thread New Thread Idle Thread (Not Runnable) Killed Thread
  • 23. join() method :-  The join method allows one thread to wait for the completion of another.  If t is a Thread object whose thread is currently executing, t.join(); causes the current thread to pause execution until t's thread terminates.  Overloads of join allow the programmer to specify a waiting period. However, as with sleep, join is dependent on the OS for timing, so you should not assume that join will wait exactly as long as you specify.  Like sleep, join responds to an interrupt by exiting with an InterruptedException Example
  • 24. Creating Threads  Thread class in the java.lang package allows you to create and manage threads. Each thread is a separate instance of this class.  A new thread can be created in two ways: 1. By extending a thread class 2. By implementing an interface
  • 25. Extending the Thread class  We can directly extend the Thread class class Threadx extends Thread { public void run() { //logic for the thread } }  The class ThreadX extends Thread. The logic for the thread is contained in the run() method.
  • 26. Cont..  It can create other objects or even initiate other threads. Example
  • 27. Implementing Runnable Interface  Declare a class that implements the Runnable interface.  This method declares only one method as shown here: public void run(); class RunnableY implements Runnable { Public vod run() { // logic for thread } }
  • 28. Cont..  The application can start an instance of the thread by using the following code: RunnableY ry = new RunnableY(); ThreadY ty= new Thread(ry); Ty.start();  1st line instantiate the RunnableY class.  2nd line instantiate the Thread class. A reference to the RunnableY object is provided as the argument to the constructor.  Last line starts the thread. Example
  • 29. Stopping a Thread  Whenever we want to stop a thread form running further, we may do so by calling its stop() method like: ty.stop();  The stop() method may be used when the premature death of a thread is desired
  • 30. Blocking a Thread  A thread can also be temporarily suspended or blocked form entering into the runnable and subsequently running state by using either of the following thread methods:  Sleep() – blocked for a specified time.  Suspend() – blocked until further orders.  Wait() – blocked until certain condition occurs.
  • 31. Cont..  These methods cause the thread to go into the blocked state. The thread will return to the runnable state when the specified time is elapsed in the case of sleep(), the resume() method is invoked in the case of suspend(), and the notify() method is called in the case of wait().
  • 32. Thread class  Some of the constructors for Thread are as follows:  Thread()  Thread(Runnable r)  Thread(Runnable r, String s)  Thread(String s)  Here, r is a reference to an object that implements the Runnable interface and s is a String used to identify the thread.
  • 33. Methods of Thread class  Method Description 1. Thread currentThread() returns a reference to the current thread 2. Void sleep(long msec) causes the current Throws InterruptedException thread to wait for msec milliseconds 3. Void sleep(long msec, int nsec) causes the current Throws InterruptedException to wait for msec milliseconds plus nsec nanoseconds 4. Void yield() causes the current thread to yield control of the processo to other
  • 34. Cont.. 5. String getName() returns the name of the thread. 6. Int getPriority() returns the priority of the thread 7. Boolean isAlive() returns true if this thread has been started and has not Yet died. Otherwise, returns false. 8. Void join() causes the caller to wait until Throws InterruptedException this thread dies. 9. Void join(long msec) causes the caller to wait a Throws InterruptedException max of msec until this thread dies. if msec is zero, there is no limit for the wait time.
  • 35. Cont.. 10. Void join(long msec, int nsec) causes the caller to wait a Throws Interruptedexception max of msec plus nsec until this thread dies. If msec plus nsec is zero, there is no limit for the wait time. 11. Void run() comprises the body of the thread. This method is overridden by subclasses. 12. Void setName(String s) sets the name of this thread to s. 13. Void setPriority(int p) sets the priority of this thread to p. 14. Void start() starts the thread 15. String toString() Returns the string equivalent of this thread. Example
  • 36. Thread Priority  In java, each thread is assigned a priority, which affects the order in which it is scheduled for running.  Java permits us to set the priority of a thread using the setPriority() method as follows: ThreadName.setPriority(intNumber);  The intNumber may assume one of these constants or any value between 1 and 10.  The intNumber is an integer value to which the thread’s priority is set. The Thread class defines several priority constants:  MIN_PRIORITY=1  NORM_PRIORITY=5  MAX_PRIORITY=10  The default setting is NORM_PRIORITY. Example
  • 37. Synchronization  When two or more threads need access to a shared resource, they need some way to ensure that the resource will be used by only one thread at a time. The process by which this is achieved is called synchronization.  This can be done in two ways. First, a method can be synchronized by using the synchronized keyword as a modifier in the method declaration.
  • 38. Cont..  When a thread begins executing a synchronized instance method, it automatically acquires a lock on that object.  The lock is automatically relinquished when the method completes.  Only one thread has this lock at any time.  Therefore, only one thread may execute any of the synchronized instance methods for that same object at a particular time.
  • 39. Cont..  Another way to synchronize access to common data is via a synchronized statement block. This has the following syntax: synchronized(obj) { //statement block } Example
  • 40. Dead Lock  Deadlock is an error that can be encountered in multithreaded programs.  It occurs when two or more threads wait for ever for each other to relinquish locks.  Assume that thread1 holds lock on object1 and waits for a lock on object2. thread2 holds a lock on object2 and waits for a lock on object1. neither of these threads may proceed. Each waits forever for the other to relinquish the lock it needs.
  • 41. Cont..  Deadlock situations can also arise that involve more than two threads. Assume that thread1 waits for a lock held by thread2. thread2 waits for a lock held by thread3. thread3 waits for a lock held by thread1. Example
  • 42. Thread Communication  Polling is usually implemented by a loop that is used to check some condition repeatedly. Once the condition is true, appropriate action is taken. This wastes CPU time.  For example, consider the classic queuing problem, where one thread is producing some data and another is consuming it.  In a polling system, the consumer would waste many CPU cycles while it waited for the producer to produce. Once the producer was finished, it would start polling, wasting more CPU cycles waiting for the consumer to finish, and so on. Clearly, this situation is undesirable.
  • 43.  To avoid polling, Java includes an elegant inter- process communication mechanism via the wait( ), notify( ), and notifyAll( ) methods. These methods are implemented as final methods in Object, so all classes have them.  All three methods can be called only from within a synchronized method. Example