SlideShare a Scribd company logo
Multithreading in Java
Fawzi Emad
Chau-Wen Tseng
Department of Computer Science
University of Maryland, College Park
Problem
Multiple tasks for computer
Draw & display images on screen
Check keyboard & mouse input
Send & receive data on network
Read & write files to disk
Perform useful computation (editor, browser, game)
How does computer do everything at once?
Multitasking
Multiprocessing
Multitasking (Time-Sharing)
Approach
Computer does some work on a task
Computer then quickly switch to next task
Tasks managed by operating system (scheduler)
Computer seems to work on tasks concurrently
Can improve performance by reducing waiting
Multitasking Can Aid Performance
Single task
Two tasks
Multiprocessing (Multithreading)
Approach
Multiple processing units (multiprocessor)
Computer works on several tasks in parallel
Performance can be improved
4096 processor
Cray X1
32 processor
Pentium Xeon
Dual-core AMD
Athlon X2
Perform Multiple Tasks Using…
1. Process
Definition – executable program loaded in memory
Has own address space
Variables & data structures (in memory)
Each process may execute a different program
Communicate via operating system, files, network
May contain multiple threads
Perform Multiple Tasks Using…
2. Thread
Definition – sequentially executed stream of
instructions
Shares address space with other threads
Has own execution context
Program counter, call stack (local variables)
Communicate via shared access to data
Multiple threads in process execute same program
Also known as “lightweight process”
Motivation for Multithreading
1. Captures logical structure of problem
May have concurrent interacting components
Can handle each component using separate thread
Simplifies programming for problem
Example
Web Server uses
threads to handle …
Multiple simultaneous
web browser requests
Motivation for Multithreading
2. Better utilize hardware resources
When a thread is delayed, compute other threads
Given extra hardware, compute threads in parallel
Reduce overall execution time
Example
Multiple simultaneous
web browser requests…
Handled faster by
multiple web servers
Multithreading Overview
Motivation & background
Threads
Creating Java threads
Thread states
Scheduling
Synchronization
Data races
Locks
Wait / Notify
Programming with Threads
Concurrent programming
Writing programs divided into independent tasks
Tasks may be executed in parallel on multiprocessors
Multithreading
Executing program with multiple threads in parallel
Special form of multiprocessing
Creating Threads in Java
Two approaches
Thread class
public class Thread extends Object { … }
Runnable interface
public interface Runnable {
public void run(); // work  thread
}
Thread Class
public class Thread extends Object
implements Runnable {
public Thread();
public Thread(String name); // Thread name
public Thread(Runnable R); // Thread  R.run()
public Thread(Runnable R, String name);
public void run(); // if no R, work for thread
public void start();// begin thread execution
...
}
More Thread Class Methods
public class Thread extends Object {
…
public static Thread currentThread()
public String getName()
public void interrupt()
public boolean isAlive()
public void join()
public void setDaemon()
public void setName()
public void setPriority()
public static void sleep()
public static void yield()
}
Creating Threads in Java
1. Thread class
Extend Thread class and override the run method
Example
public class MyT extends Thread {
public void run() {
… // work for thread
}
}
MyT T = new MyT () ; // create thread
T.start(); // begin running thread
… // thread executing in
parallel
Creating Threads in Java
2. Runnable interface
Create object implementing Runnable interface
Pass it to Thread object via Thread constructor
Example
public class MyT implements Runnable {
public void run() {
… // work for thread
}
}
Thread T = new Thread(new MyT); // create thread
T.start(); // begin running thread
… // thread executing in parallel
Creating Threads in Java
Note
Thread starts executing only if start() is called
Runnable is interface
So it can be multiply inherited
Required for multithreading in applets
Threads – Thread States
Java thread can be in one of these states
New – thread allocated & waiting for start()
Runnable – thread can begin execution
Running – thread currently executing
Blocked – thread waiting for event (I/O, etc.)
Dead – thread finished
Transitions between states caused by
Invoking methods in class Thread
new(), start(), yield(), sleep(), wait(), notify()…
Other (external) events
Scheduler, I/O, returning from run()…
Threads – Thread States
State diagram
runnable
scheduler
new
dead
running blocked
new start
terminate
IO, sleep,
wait, join
yield,
time
slice
notify, notifyAll,
IO complete,
sleep expired,
join complete
Daemon Threads
Java threads types
User
Daemon
Provide general services
Typically never terminate
Call setDaemon() before start()
Program termination
1. All user threads finish
2. Daemon threads are terminated by JVM
3. Main program finishes
Threads – Scheduling
Scheduler
Determines which runnable threads to run
Can be based on thread priority
Part of OS or Java Virtual Machine (JVM)
Scheduling policy
Nonpreemptive (cooperative) scheduling
Preemptive scheduling
Threads – Non-preemptive Scheduling
Threads continue execution until
Thread terminates
Executes instruction causing wait (e.g., IO)
Thread volunteering to stop (invoking yield or sleep)
Threads – Preemptive Scheduling
Threads continue execution until
Same reasons as non-preemptive scheduling
Preempted by scheduler
Java Thread Example
public class ThreadExample extends Thread {
public void run() {
for (int i = 0; i < 3; i++)
System.out.println(i);
try {
sleep((int)(Math.random() * 5000)); // 5 secs
} catch (InterruptedException e) { }
}
public static void main(String[] args) {
new ThreadExample().start();
new ThreadExample().start();
System.out.println("Done");
}
}
Java Thread Example – Output
Possible outputs
0,1,2,0,1,2,Done // thread 1, thread 2, main()
0,1,2,Done,0,1,2 // thread 1, main(), thread 2
Done,0,1,2,0,1,2 // main(), thread 1, thread 2
0,0,1,1,2,Done,2 // main() & threads interleaved
thread 1: println 0, println 1, println 2
main (): thread 1, thread 2, println Done
thread 2: println 0, println 1, println 2
Data Races
public class DataRace extends Thread {
static int x;
public void run() {
for (int i = 0; i < 100000; i++) {
x = x + 1;
x = x – 1;
}
}
public static void main(String[] args) {
x = 0;
for (int i = 0; i < 100000; i++)
new DataRace().start();
System.out.println(x);// x not always 0!
}
}
Thread Scheduling Observations
Order thread is selected is indeterminate
Depends on scheduler
Thread can block indefinitely (starvation)
If other threads always execute first
Thread scheduling may cause data races
Modifying same data from multiple threads
Result depends on thread execution order
Synchronization
Control thread execution order
Eliminate data races

More Related Content

PPT
JAVA MULTITHREDED PROGRAMMING - LECTURES
PPT
Multithreading
 
PPT
multithreading
PPT
PPT
Java Multithreading
PPT
Java multithreading
PPT
PPTX
Multithreading in java
JAVA MULTITHREDED PROGRAMMING - LECTURES
Multithreading
 
multithreading
Java Multithreading
Java multithreading
Multithreading in java

Similar to Advanced Java Programming for Beginners. (20)

PPTX
Object-Oriented-Prog_MultiThreading.pptx
PPT
Threads in java, Multitasking and Multithreading
PDF
JAVA 3.2.pdfhdfkjhdfvbjdbjfhjdfhdjhfjdfdjfhdjhjd
PDF
Multithreading Introduction and Lifecyle of thread
PPTX
MSBTE Computer Engineering JPR java. multi. threading.pptx
PDF
Unit 5 - Java Multihhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaathreading.pdf
PPT
PDF
Java unit 12
DOCX
Threadnotes
PDF
Java threads
PDF
Unit-3 MULTITHREADING-2.pdf
PPT
java multi threading and synchronisation.ppt
PPT
Md09 multithreading
PPTX
multithreading,thread and processinjava-210302183809.pptx
PPTX
Multithreading programming in java
PPTX
Multithreading in java
PPTX
Internet Programming with Java
PPT
multithreading, creating a thread and life cycle in java.ppt
Object-Oriented-Prog_MultiThreading.pptx
Threads in java, Multitasking and Multithreading
JAVA 3.2.pdfhdfkjhdfvbjdbjfhjdfhdjhfjdfdjfhdjhjd
Multithreading Introduction and Lifecyle of thread
MSBTE Computer Engineering JPR java. multi. threading.pptx
Unit 5 - Java Multihhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaathreading.pdf
Java unit 12
Threadnotes
Java threads
Unit-3 MULTITHREADING-2.pdf
java multi threading and synchronisation.ppt
Md09 multithreading
multithreading,thread and processinjava-210302183809.pptx
Multithreading programming in java
Multithreading in java
Internet Programming with Java
multithreading, creating a thread and life cycle in java.ppt
Ad

Recently uploaded (20)

PDF
Module 3: Health Systems Tutorial Slides S2 2025
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PDF
Electrolyte Disturbances and Fluid Management A clinical and physiological ap...
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
PPTX
Onica Farming 24rsclub profitable farm business
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Open folder Downloads.pdf yes yes ges yes
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
NOI Hackathon - Summer Edition - GreenThumber.pptx
PDF
Piense y hagase Rico - Napoleon Hill Ccesa007.pdf
PDF
Business Ethics Teaching Materials for college
PPTX
Open Quiz Monsoon Mind Game Prelims.pptx
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
PDF
English Language Teaching from Post-.pdf
PPTX
Pharma ospi slides which help in ospi learning
Module 3: Health Systems Tutorial Slides S2 2025
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
Electrolyte Disturbances and Fluid Management A clinical and physiological ap...
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
Onica Farming 24rsclub profitable farm business
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
Anesthesia in Laparoscopic Surgery in India
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Open folder Downloads.pdf yes yes ges yes
O5-L3 Freight Transport Ops (International) V1.pdf
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
NOI Hackathon - Summer Edition - GreenThumber.pptx
Piense y hagase Rico - Napoleon Hill Ccesa007.pdf
Business Ethics Teaching Materials for college
Open Quiz Monsoon Mind Game Prelims.pptx
Week 4 Term 3 Study Techniques revisited.pptx
English Language Teaching from Post-.pdf
Pharma ospi slides which help in ospi learning
Ad

Advanced Java Programming for Beginners.

  • 1. Multithreading in Java Fawzi Emad Chau-Wen Tseng Department of Computer Science University of Maryland, College Park
  • 2. Problem Multiple tasks for computer Draw & display images on screen Check keyboard & mouse input Send & receive data on network Read & write files to disk Perform useful computation (editor, browser, game) How does computer do everything at once? Multitasking Multiprocessing
  • 3. Multitasking (Time-Sharing) Approach Computer does some work on a task Computer then quickly switch to next task Tasks managed by operating system (scheduler) Computer seems to work on tasks concurrently Can improve performance by reducing waiting
  • 4. Multitasking Can Aid Performance Single task Two tasks
  • 5. Multiprocessing (Multithreading) Approach Multiple processing units (multiprocessor) Computer works on several tasks in parallel Performance can be improved 4096 processor Cray X1 32 processor Pentium Xeon Dual-core AMD Athlon X2
  • 6. Perform Multiple Tasks Using… 1. Process Definition – executable program loaded in memory Has own address space Variables & data structures (in memory) Each process may execute a different program Communicate via operating system, files, network May contain multiple threads
  • 7. Perform Multiple Tasks Using… 2. Thread Definition – sequentially executed stream of instructions Shares address space with other threads Has own execution context Program counter, call stack (local variables) Communicate via shared access to data Multiple threads in process execute same program Also known as “lightweight process”
  • 8. Motivation for Multithreading 1. Captures logical structure of problem May have concurrent interacting components Can handle each component using separate thread Simplifies programming for problem Example Web Server uses threads to handle … Multiple simultaneous web browser requests
  • 9. Motivation for Multithreading 2. Better utilize hardware resources When a thread is delayed, compute other threads Given extra hardware, compute threads in parallel Reduce overall execution time Example Multiple simultaneous web browser requests… Handled faster by multiple web servers
  • 10. Multithreading Overview Motivation & background Threads Creating Java threads Thread states Scheduling Synchronization Data races Locks Wait / Notify
  • 11. Programming with Threads Concurrent programming Writing programs divided into independent tasks Tasks may be executed in parallel on multiprocessors Multithreading Executing program with multiple threads in parallel Special form of multiprocessing
  • 12. Creating Threads in Java Two approaches Thread class public class Thread extends Object { … } Runnable interface public interface Runnable { public void run(); // work  thread }
  • 13. Thread Class public class Thread extends Object implements Runnable { public Thread(); public Thread(String name); // Thread name public Thread(Runnable R); // Thread  R.run() public Thread(Runnable R, String name); public void run(); // if no R, work for thread public void start();// begin thread execution ... }
  • 14. More Thread Class Methods public class Thread extends Object { … public static Thread currentThread() public String getName() public void interrupt() public boolean isAlive() public void join() public void setDaemon() public void setName() public void setPriority() public static void sleep() public static void yield() }
  • 15. Creating Threads in Java 1. Thread class Extend Thread class and override the run method Example public class MyT extends Thread { public void run() { … // work for thread } } MyT T = new MyT () ; // create thread T.start(); // begin running thread … // thread executing in parallel
  • 16. Creating Threads in Java 2. Runnable interface Create object implementing Runnable interface Pass it to Thread object via Thread constructor Example public class MyT implements Runnable { public void run() { … // work for thread } } Thread T = new Thread(new MyT); // create thread T.start(); // begin running thread … // thread executing in parallel
  • 17. Creating Threads in Java Note Thread starts executing only if start() is called Runnable is interface So it can be multiply inherited Required for multithreading in applets
  • 18. Threads – Thread States Java thread can be in one of these states New – thread allocated & waiting for start() Runnable – thread can begin execution Running – thread currently executing Blocked – thread waiting for event (I/O, etc.) Dead – thread finished Transitions between states caused by Invoking methods in class Thread new(), start(), yield(), sleep(), wait(), notify()… Other (external) events Scheduler, I/O, returning from run()…
  • 19. Threads – Thread States State diagram runnable scheduler new dead running blocked new start terminate IO, sleep, wait, join yield, time slice notify, notifyAll, IO complete, sleep expired, join complete
  • 20. Daemon Threads Java threads types User Daemon Provide general services Typically never terminate Call setDaemon() before start() Program termination 1. All user threads finish 2. Daemon threads are terminated by JVM 3. Main program finishes
  • 21. Threads – Scheduling Scheduler Determines which runnable threads to run Can be based on thread priority Part of OS or Java Virtual Machine (JVM) Scheduling policy Nonpreemptive (cooperative) scheduling Preemptive scheduling
  • 22. Threads – Non-preemptive Scheduling Threads continue execution until Thread terminates Executes instruction causing wait (e.g., IO) Thread volunteering to stop (invoking yield or sleep)
  • 23. Threads – Preemptive Scheduling Threads continue execution until Same reasons as non-preemptive scheduling Preempted by scheduler
  • 24. Java Thread Example public class ThreadExample extends Thread { public void run() { for (int i = 0; i < 3; i++) System.out.println(i); try { sleep((int)(Math.random() * 5000)); // 5 secs } catch (InterruptedException e) { } } public static void main(String[] args) { new ThreadExample().start(); new ThreadExample().start(); System.out.println("Done"); } }
  • 25. Java Thread Example – Output Possible outputs 0,1,2,0,1,2,Done // thread 1, thread 2, main() 0,1,2,Done,0,1,2 // thread 1, main(), thread 2 Done,0,1,2,0,1,2 // main(), thread 1, thread 2 0,0,1,1,2,Done,2 // main() & threads interleaved thread 1: println 0, println 1, println 2 main (): thread 1, thread 2, println Done thread 2: println 0, println 1, println 2
  • 26. Data Races public class DataRace extends Thread { static int x; public void run() { for (int i = 0; i < 100000; i++) { x = x + 1; x = x – 1; } } public static void main(String[] args) { x = 0; for (int i = 0; i < 100000; i++) new DataRace().start(); System.out.println(x);// x not always 0! } }
  • 27. Thread Scheduling Observations Order thread is selected is indeterminate Depends on scheduler Thread can block indefinitely (starvation) If other threads always execute first Thread scheduling may cause data races Modifying same data from multiple threads Result depends on thread execution order Synchronization Control thread execution order Eliminate data races