SlideShare a Scribd company logo
1 of 88
1
Java Threads
Representation and Management
of Data on the Internet
2
Multitasking and Multithreading
• Multitasking:
– refers to a computer's ability to perform multiple jobs
concurrently
– more than one program are running concurrently, e.g.,
UNIX
• Multithreading:
– A thread is a single sequence of execution within a
program
– refers to multiple threads of control within a single
program
– each program can run multiple threads of control within
it, e.g., Web Browser
3
Concurrency vs. Parallelism
CPU CPU1 CPU2
4
Threads and Processes
CPU
Process 1 Process 3Process 2 Process 4
main
run
GC
5
What are Threads Good For?
• To maintain responsiveness of an application
during a long running task
• To enable cancellation of separable tasks
• Some problems are intrinsically parallel
• To monitor status of some resource (e.g., DB)
• Some APIs and systems demand it (e.g., Swing)
6
Application Thread
• When we execute an application:
1. The JVM creates a Thread object whose task
is defined by the main() method
2. The JVM starts the thread
3. The thread executes the statements of the
program one by one
4. After executing all the statements, the method
returns and the thread dies
7
Multiple Threads in an Application
• Each thread has its private run-time stack
• If two threads execute the same method, each will
have its own copy of the local variables the
methods uses
• However, all threads see the same dynamic
memory, i.e., heap (are there variables on the
heap?)
• Two different threads can act on the same object
and same static fields concurrently
8
Creating Threads
• There are two ways to create our own
Thread object
1. Subclassing the Thread class and instantiating
a new object of that class
2. Implementing the Runnable interface
• In both cases the run() method should be
implemented
9
Extending Thread
public class ThreadExample extends Thread {
public void run () {
for (int i = 1; i <= 100; i++) {
System.out.println(“---”);
}
}
}
10
Thread Methods
void start()
– Creates a new thread and makes it runnable
– This method can be called only once
void run()
– The new thread begins its life inside this method
void stop() (deprecated)
– The thread is being terminated
11
Thread Methods
void yield()
– Causes the currently executing thread object to
temporarily pause and allow other threads to
execute
– Allow only threads of the same priority to run
void sleep(int m) or sleep(int m, int n)
– The thread sleeps for m milliseconds, plus n
nanoseconds
12
Implementing Runnable
public class RunnableExample implements Runnable {
public void run () {
for (int i = 1; i <= 100; i++) {
System.out.println (“***”);
}
}
}
13
A Runnable Object
• When running the Runnable object, a
Thread object is created from the Runnable
object
• The Thread object’s run() method calls the
Runnable object’s run() method
• Allows threads to run inside any object,
regardless of inheritance Example – an applet
that is also a thread
14
Starting the Threads
public class ThreadsStartExample {
public static void main (String argv[]) {
new ThreadExample ().start ();
new Thread(new RunnableExample ()).start ();
}
}
What will we see when running
ThreadsStartExample?
15
16
Scheduling Threads
I/O operation completes
start()
Currently executed
thread
Ready queue
•Waiting for I/O operation to be completed
•Waiting to be notified
•Sleeping
•Waiting to enter a synchronized section
Newly created
threads
What happens when
a program with a
ServerSocket calls
accept()?
17
Alive
Thread State Diagram
New Thread Dead Thread
Running
Runnable
new ThreadExample();
run() method returns
while (…) { … }
Blocked
Object.wait()
Thread.sleep()
blocking IO call
waiting on a monitor
thread.start();
18
Example
public class PrintThread1 extends Thread {
String name;
public PrintThread1(String name) {
this.name = name;
}
public void run() {
for (int i=1; i<100 ; i++) {
try {
sleep((long)(Math.random() * 100));
} catch (InterruptedException ie) { }
System.out.print(name);
}
}
19
Example (cont)
public static void main(String args[]) {
PrintThread1 a = new PrintThread1("*");
PrintThread1 b = new PrintThread1("-");
a.start();
b.start();
}
}
20
21
Scheduling
• Thread scheduling is the mechanism used
to determine how runnable threads are
allocated CPU time
• A thread-scheduling mechanism is either
preemptive or nonpreemptive
22
Preemptive Scheduling
• Preemptive scheduling – the thread scheduler
preempts (pauses) a running thread to allow
different threads to execute
• Nonpreemptive scheduling – the scheduler never
interrupts a running thread
• The nonpreemptive scheduler relies on the running
thread to yield control of the CPU so that other
threads may execute
23
Starvation
• A nonpreemptive scheduler may cause
starvation (runnable threads, ready to be
executed, wait to be executed in the CPU a
very long time, maybe even forever)
• Sometimes, starvation is also called a
livelock
24
Time-Sliced Scheduling
• Time-sliced scheduling
– the scheduler allocates a period of time that each
thread can use the CPU
– when that amount of time has elapsed, the scheduler
preempts the thread and switches to a different thread
• Nontime-sliced scheduler
– the scheduler does not use elapsed time to determine
when to preempt a thread
– it uses other criteria such as priority or I/O status
25
Java Scheduling
• Scheduler is preemptive and based on
priority of threads
• Uses fixed-priority scheduling:
– Threads are scheduled according to their priority
w.r.t. other threads in the ready queue
26
Java Scheduling
• The highest priority runnable thread is always selected for
execution above lower priority threads
• When multiple threads have equally high priorities, only one
of those threads is guaranteed to be executing
• Java threads are guaranteed to be preemptive-but not time
sliced
• Q: Why can’t we guarantee time-sliced scheduling?
What is the danger of such scheduler?
27
Thread Priority
• Every thread has a priority
• When a thread is created, it inherits the
priority of the thread that created it
• The priority values range from 1 to 10,
in increasing priority
28
Thread Priority (cont.)
• The priority can be adjusted subsequently using
the setPriority() method
• The priority of a thread may be obtained using
getPriority()
• Priority constants are defined:
– MIN_PRIORITY=1
– MAX_PRIORITY=10
– NORM_PRIORITY=5
The main thread is
created with priority
NORM_PRIORITY
29
Some Notes
• Thread implementation in Java is actually based
on operating system support
• Some Windows operating systems support only 7
priority levels, so different levels in Java may
actually be mapped to the same operating system
level
• What should we do about this?
• Furthermore, The thread scheduler may choose to
run a lower priority thread to avoid starvation
30
Daemon Threads
• Daemon threads are “background” threads, that
provide services to other threads, e.g., the garbage
collection thread
• The Java VM will not exit if non-Daemon threads
are executing
• The Java VM will exit if only Daemon threads are
executing
• Daemon threads die when the Java VM exits
• Q: Is the main thread a daemon thread?
31
Thread and the Garbage Collector
• Can a Thread object be collected by the
garbage collector while running?
– If not, why?
– If yes, what happens to the execution thread?
• When can a Thread object be collected?
32
ThreadGroup
• The ThreadGroup class is used to create
groups of similar threads. Why is this
needed?
“Thread groups are best viewed as an
unsuccessful experiment, and you may simply
ignore their existence.”
Joshua Bloch, software architect at Sun
33
Multithreading Client-Server
34
HelloServer
HelloClient
ConnectionHandler
HelloClient
ConnectionHandler …
35
Server
import java.net.*;import java.io.*;
class HelloServer {
public static void main(String[] args) {
int port = Integer.parseInt(args[0]);
try {
ServerSocket server =
new ServerSocket(port);
} catch (IOException ioe) {
System.err.println(“Couldn't run “ +
“server on port “ + port);
return;
}
36
while(true) {
try {
Socket connection = server.accept();
ConnectionHandler handler =
new ConnectionHandler(connection);
new Thread(handler).start();
} catch (IOException ioe1) {
}
}
37
Connection Handler
// Handles a connection of a client to an
HelloServer.
// Talks with the client in the 'hello' protocol
class ConnectionHandler implements Runnable {
// The connection with the client
private Socket connection;
public ConnectionHandler(Socket connection) {
this.connection = connection;
}
38
public void run() {
try {
BufferedReader reader =
new BufferedReader(
new InputStreamReader(
connection.getInputStream()));
PrintWriter writer =
new PrintWriter(
new OutputStreamWriter(
connection.getOutputStream()));
String clientName = reader.readLine();
writer.println(“Hello “ + clientName);
writer.flush();
} catch (IOException ioe) {}
}
}
39
Client side
import java.net.*; import java.io.*;
// A client of an HelloServer
class HelloClient {
public static void main(String[] args) {
String hostname = args[0];
int port = Integer.parseInt(args[1]);
Socket connection = null;
try {
connection = new Socket(hostname, port);
} catch (IOException ioe) {
System.err.println("Connection failed");
return;
}
40
try {
BufferedReader reader =
new BufferedReader(
new InputStreamReader(
connection.getInputStream()));
PrintWriter writer =
new PrintWriter(
new OutputStreamWriter(
connection.getOutputStream()));
writer.println(args[2]); // client name
String reply = reader.readLine();
System.out.println("Server reply: "+reply);
writer.flush();
} catch (IOException ioe1) {
}
}
Note that the Client has not
changed from the
networking-lecture example
41
Concurrency
• An object in a program can be changed by
more than one thread
• Q: Is the order of changes that were
preformed on the object important?
42
Race Condition
• A race condition – the outcome of a program
is affected by the order in which the
program's threads are allocated CPU time
• Two threads are simultaneously modifying a
single object
• Both threads “race” to store their value
43
Race Condition Example
Put green pieces
Put red piecesHow can we have
alternating colors?
44
Monitors
• Each object has a “monitor” that is a token
used to determine which application thread
has control of a particular object instance
• In execution of a synchronized method (or
block), access to the object monitor must be
gained before the execution
• Access to the object monitor is queued
45
Monitor (cont.)
• Entering a monitor is also referred to as
locking the monitor, or acquiring ownership
of the monitor
• If a thread A tries to acquire ownership of a
monitor and a different thread has already
entered the monitor, the current thread (A)
must wait until the other thread leaves the
monitor
46
Critical Section
• The synchronized methods define critical
sections
• Execution of critical sections is mutually
exclusive. Why?
47
Example
public class BankAccount {
private float balance;
public synchronized void deposit(float amount){
balance += amount;
}
public synchronized void withdraw(float amount){
balance -= amount;
}
}
48
Critical Sections
Bank Account
deposit()
t1t2t3
49
Java Locks are Reentrant
• Is there a problem with the following code?
public class Test {
public synchronized void a() {
b();
System.out.println(“I am at a”);
}
public synchronized void b() {
System.out.println(“I am at b”);
}
}
50
Static Synchronized Methods
• Marking a static method as synchronized,
associates a monitor with the class itself
• The execution of synchronized static
methods of the same class is mutually
exclusive. Why?
51
Synchronized Statements
• A monitor can be assigned to a block:
synchronized(object) { some-code }
• It can also be used to monitor access to a data
element that is not an object, e.g., array:
void arrayShift(byte[] array, int count) {
synchronized(array) {
System.arraycopy (array, count, array,
0, array.size - count);
}
}
52
The Followings are Equivalent
public synchronized void a() {
//… some code …
}
public void a() {
synchronized (this) {
//… some code …
}
}
53
The Followings are Equivalent
public static synchronized void a() {
//… some code …
}
public void a() {
synchronized (this.getClass()) {
//… some code …
}
}
54
Example
public class MyPrinter {
public MyPrinter() {}
public synchronized void printName(String name) {
for (int i=1; i<100 ; i++) {
try {
Thread.sleep((long)(Math.random() * 100));
} catch (InterruptedException ie) {}
System.out.print(name);
}
}
}
55
Example
public class PrintThread2 extends Thread {
String name;
MyPrinter printer;
public PrintThread2(String name, MyPrinter printer){
this.name = name;
this.printer = printer;
}
public void run() {
printer.printName(name);
}
}
56
Example (cont)
public class ThreadsTest2 {
public static void main(String args[]) {
MyPrinter myPrinter = new MyPrinter();
PrintThread2 a = new PrintThread2("*“, printer);
PrintThread2 b = new PrintThread2("-“, printer);
PrintThread2 c = new PrintThread2("=“, printer);
a.start();
b.start();
c.start();
}
}
What will happen?
57
58
Deadlock Example
public class BankAccount {
private float balance;
public synchronized void deposit(float amount) {
balance += amount;
}
public synchronized void withdraw(float amount) {
balance -= amount;
}
public synchronized void transfer
(float amount, BankAccount target) {
withdraw(amount);
target.deposit(amount);
}
}
59
public class MoneyTransfer implements Runnable {
private BankAccount from, to;
private float amount;
public MoneyTransfer(
BankAccount from, BankAccount to, float amount){
this.from = from;
this.to = to;
this.amount = amount;
}
public void run() {
source.transfer(amount, target);
}
}
60
BankAccount aliceAccount = new BankAccount();
BankAccount bobAccount = new BankAccount();
...
// At one place
Runnable transaction1 =
new MoneyTransfer(aliceAccount, bobAccount, 1200);
Thread t1 = new Thread(transaction1);
t1.start();
// At another place
Runnable transaction2 =
new MoneyTransfer(bobAccount, aliceAccount, 700);
Thread t2 = new Thread(transaction2);
t2.start();
61
Deadlocks
deposit()
aliceAccount bobAccount
t1 t2
deposit()
?
transfer()
withdraw()
transfer()
withdraw()
62
Thread Synchronization
• We need to synchronized between
transactions, for example, the consumer-
producer scenario
63
Wait and Notify
• Allows two threads to cooperate
• Based on a single shared lock object
– Marge put a cookie wait and notify Homer
– Homer eat a cookie wait and notify Marge
• Marge put a cookie wait and notify Homer
• Homer eat a cookie wait and notify Marge
64
The wait() Method
• The wait() method is part of the
java.lang.Object interface
• It requires a lock on the object’s monitor to
execute
• It must be called from a synchronized
method, or from a synchronized segment of
code. Why?
65
The wait() Method
• wait() causes the current thread to wait until
another thread invokes the notify() method
or the notifyAll() method for this object
• Upon call for wait(), the thread releases
ownership of this monitor and waits until
another thread notifies the waiting threads of
the object
66
The wait() Method
• wait() is also similar to yield()
– Both take the current thread off the execution stack and
force it to be rescheduled
• However, wait() is not automatically put back into
the scheduler queue
– notify() must be called in order to get a thread back into
the scheduler’s queue
– The objects monitor must be reacquired before the
thread’s run can continue
What is the difference
between wait and sleep?
67
Consumer
• Consumer:
synchronized (lock) {
while (!resourceAvailable()) {
lock.wait();
}
consumeResource();
}
68
Producer
• Producer:
produceResource();
synchronized (lock) {
lock.notifyAll();
}
69
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8.Return from wait()
9. consumeResource();
10. }
70
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8. Return from wait()
9. consumeResource();
10. }
71
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8. Return from wait()
9. consumeResource();
10. }
72
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8. Return from wait()
9. consumeResource();
10. }
73
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8. Return from wait()
9. consumeResource();
10. }
74
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8. Return from wait()
9. consumeResource();
10. }
75
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8. Return from wait()
9. consumeResource();
10. }
76
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8. Return from wait()
9. consumeResource();
10. }
77
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8. Return from wait()
9. consumeResource();
10. }
78
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8. Return from wait()
9. consumeResource();
10. }
79
Wait/Notify Sequence
Lock Object
Consumer
Thread
Producer
Thread
1. synchronized(lock){
2. lock.wait();
3. produceResource()
4. synchronized(lock)
5. lock.notify();
6.}
7. Reacquire lock
8. Return from wait()
9. consumeResource();
10. }
80
public class SimpsonsTest {
public static void main(String[] args) {
CookyJar jar = new CookyJar();
Homer homer = new Homer(jar);
Marge marge = new Marge(jar);
new Thread(homer).start();
new Thread(marge).start();
}
}
The Simpsons Scenario:
SimpsonsTest
81
public class Homer implements Runnable {
CookyJar jar;
public Homer(CookyJar jar) {
this.jar = jar;
}
public void eat() {
jar.getCooky("Homer");
try {
Thread.sleep((int)Math.random() * 1000);
} catch (InterruptedException ie) {}
}
public void run() {
for (int i = 1 ; i <= 10 ; i++) eat();
}
}
The Simpsons Scenario: Homer
82
public class Marge implements Runnable {
CookyJar jar;
public Marge(CookyJar jar) {
this.jar = jar;
}
public void bake(int cookyNumber) {
jar.putCooky("Marge", cookyNumber);
try {
Thread.sleep((int)Math.random() * 500);
} catch (InterruptedException ie) {}
}
public void run() {
for (int i = 0 ; i < 10 ; i++) bake(i);
}
}
The Simpsons Scenario: Marge
83
public class CookyJar {
private int contents;
private boolean available = false;
public synchronized void getCooky(String who) {
while (!available) {
try {
wait();
} catch (InterruptedException e) { }
}
available = false;
notifyAll();
System.out.println( who + " ate cooky " +
contents);
}
The Simpsons Scenario: CookieJar
84
public synchronized void putCooky(String who,
int value) {
while (available) {
try {
wait();
} catch (InterruptedException e) { }
}
contents = value;
available = true;
System.out.println(who + " put cooky " +
contents + " in the jar");
notifyAll();
}
}
The Simpsons Scenario: CookieJar
85
Timers and TimerTask
• The classes Timer and TimerTask are part
of the java.util package
• Useful for
– performing a task after a specified delay
– performing a sequence of tasks at constant time
intervals
86
Scheduling Timers
• The schedule method of a timer can get as
parameters:
– Task, time
– Task, time, period
– Task, delay
– Task, delay, period
When to startWhat to do At which rate
87
import java.util.*;
public class CoffeeTask extends TimerTask {
public void run() {
System.out.println(“Time for a Coffee Break”);
}
public static void main(String args[]) {
Timer timer = new Timer();
long hour = 1000 * 60 * 60;
timer.schedule(new CoffeeTask(), 0, 8 * hour);
timer.scheduleAtFixedRate(new CoffeeTask(),
new Date(), 24 * hour);
}
}
Timer Example
88
Stopping Timers
• A Timer thread can be stopped in the
following ways:
– Apply cancel() on the timer
– Make the thread a daemon
– Remove all references to the timer after all the
TimerTask tasks have finished
– Call System.exit()

More Related Content

What's hot (20)

Java Thread Synchronization
Java Thread SynchronizationJava Thread Synchronization
Java Thread Synchronization
 
javathreads
javathreadsjavathreads
javathreads
 
Java Threads and Concurrency
Java Threads and ConcurrencyJava Threads and Concurrency
Java Threads and Concurrency
 
Java threads
Java threadsJava threads
Java threads
 
Multithreading in Java
Multithreading in JavaMultithreading in Java
Multithreading in Java
 
Threads
ThreadsThreads
Threads
 
Java concurrency
Java concurrencyJava concurrency
Java concurrency
 
Java Thread & Multithreading
Java Thread & MultithreadingJava Thread & Multithreading
Java Thread & Multithreading
 
Java threading
Java threadingJava threading
Java threading
 
Java Multithreading Using Executors Framework
Java Multithreading Using Executors FrameworkJava Multithreading Using Executors Framework
Java Multithreading Using Executors Framework
 
Multithreading in java
Multithreading in javaMultithreading in java
Multithreading in java
 
Java Multithreading and Concurrency
Java Multithreading and ConcurrencyJava Multithreading and Concurrency
Java Multithreading and Concurrency
 
Multithread Programing in Java
Multithread Programing in JavaMultithread Programing in Java
Multithread Programing in Java
 
Concurrency in java
Concurrency in javaConcurrency in java
Concurrency in java
 
Thread priorities35
Thread priorities35Thread priorities35
Thread priorities35
 
Concurrency with java
Concurrency with javaConcurrency with java
Concurrency with java
 
Internet Programming with Java
Internet Programming with JavaInternet Programming with Java
Internet Programming with Java
 
Basics of Java Concurrency
Basics of Java ConcurrencyBasics of Java Concurrency
Basics of Java Concurrency
 
Java Course 10: Threads and Concurrency
Java Course 10: Threads and ConcurrencyJava Course 10: Threads and Concurrency
Java Course 10: Threads and Concurrency
 
Multithreading Presentation
Multithreading PresentationMultithreading Presentation
Multithreading Presentation
 

Viewers also liked

Lecture on Java Concurrency Day 3 on Feb 11, 2009.
Lecture on Java Concurrency Day 3 on Feb 11, 2009.Lecture on Java Concurrency Day 3 on Feb 11, 2009.
Lecture on Java Concurrency Day 3 on Feb 11, 2009.Kyung Koo Yoon
 
Programming JVM Bytecode with Jitescript
Programming JVM Bytecode with JitescriptProgramming JVM Bytecode with Jitescript
Programming JVM Bytecode with JitescriptJoe Kutner
 
Slide8appletv2 091028110313-phpapp01
Slide8appletv2 091028110313-phpapp01Slide8appletv2 091028110313-phpapp01
Slide8appletv2 091028110313-phpapp01Abhishek Khune
 
Multithreaded programming (as part of the the PTT lecture)
Multithreaded programming (as part of the the PTT lecture)Multithreaded programming (as part of the the PTT lecture)
Multithreaded programming (as part of the the PTT lecture)Ralf Laemmel
 
Advanced Introduction to Java Multi-Threading - Full (chok)
Advanced Introduction to Java Multi-Threading - Full (chok)Advanced Introduction to Java Multi-Threading - Full (chok)
Advanced Introduction to Java Multi-Threading - Full (chok)choksheak
 
Collections In Java
Collections In JavaCollections In Java
Collections In JavaBinoj T E
 

Viewers also liked (14)

Lecture on Java Concurrency Day 3 on Feb 11, 2009.
Lecture on Java Concurrency Day 3 on Feb 11, 2009.Lecture on Java Concurrency Day 3 on Feb 11, 2009.
Lecture on Java Concurrency Day 3 on Feb 11, 2009.
 
06 abstract-classes
06 abstract-classes06 abstract-classes
06 abstract-classes
 
Week0 introduction
Week0 introductionWeek0 introduction
Week0 introduction
 
Programming JVM Bytecode with Jitescript
Programming JVM Bytecode with JitescriptProgramming JVM Bytecode with Jitescript
Programming JVM Bytecode with Jitescript
 
Binary trees
Binary treesBinary trees
Binary trees
 
Threads
ThreadsThreads
Threads
 
Sorting
SortingSorting
Sorting
 
Shared memory
Shared memoryShared memory
Shared memory
 
Slide8appletv2 091028110313-phpapp01
Slide8appletv2 091028110313-phpapp01Slide8appletv2 091028110313-phpapp01
Slide8appletv2 091028110313-phpapp01
 
Multithreaded programming (as part of the the PTT lecture)
Multithreaded programming (as part of the the PTT lecture)Multithreaded programming (as part of the the PTT lecture)
Multithreaded programming (as part of the the PTT lecture)
 
07 java collection
07 java collection07 java collection
07 java collection
 
Java Notes
Java NotesJava Notes
Java Notes
 
Advanced Introduction to Java Multi-Threading - Full (chok)
Advanced Introduction to Java Multi-Threading - Full (chok)Advanced Introduction to Java Multi-Threading - Full (chok)
Advanced Introduction to Java Multi-Threading - Full (chok)
 
Collections In Java
Collections In JavaCollections In Java
Collections In Java
 

Similar to Threads

Threads in java, Multitasking and Multithreading
Threads in java, Multitasking and MultithreadingThreads in java, Multitasking and Multithreading
Threads in java, Multitasking and Multithreadingssusere538f7
 
Java Threads And Concurrency Presentation. 2024
Java Threads And Concurrency Presentation. 2024Java Threads And Concurrency Presentation. 2024
Java Threads And Concurrency Presentation. 2024kashyapneha2809
 
Java-Threads And Concurrency Presentation. 2024
Java-Threads And Concurrency Presentation. 2024Java-Threads And Concurrency Presentation. 2024
Java-Threads And Concurrency Presentation. 2024nehakumari0xf
 
OOPS object oriented programming UNIT-4.pptx
OOPS object oriented programming UNIT-4.pptxOOPS object oriented programming UNIT-4.pptx
OOPS object oriented programming UNIT-4.pptxArulmozhivarman8
 
Multithreading in Java
Multithreading in JavaMultithreading in Java
Multithreading in JavaJayant Dalvi
 
Multithreading.pptx
Multithreading.pptxMultithreading.pptx
Multithreading.pptxssuserfcae42
 
MULTI THREADING IN JAVA
MULTI THREADING IN JAVAMULTI THREADING IN JAVA
MULTI THREADING IN JAVAVINOTH R
 
13multithreaded Programming
13multithreaded Programming13multithreaded Programming
13multithreaded ProgrammingAdil Jafri
 
JAVA THREADS.pdf
JAVA THREADS.pdfJAVA THREADS.pdf
JAVA THREADS.pdfMohit Kumar
 
Runnable interface.34
Runnable interface.34Runnable interface.34
Runnable interface.34myrajendra
 
1.17 Thread in java.pptx
1.17 Thread in java.pptx1.17 Thread in java.pptx
1.17 Thread in java.pptxTREXSHyNE
 
Multithreading Introduction and Lifecyle of thread
Multithreading Introduction and Lifecyle of threadMultithreading Introduction and Lifecyle of thread
Multithreading Introduction and Lifecyle of threadKartik Dube
 
Java Concurrency, Memory Model, and Trends
Java Concurrency, Memory Model, and TrendsJava Concurrency, Memory Model, and Trends
Java Concurrency, Memory Model, and TrendsCarol McDonald
 
Class notes(week 9) on multithreading
Class notes(week 9) on multithreadingClass notes(week 9) on multithreading
Class notes(week 9) on multithreadingKuntal Bhowmick
 

Similar to Threads (20)

Threads in java, Multitasking and Multithreading
Threads in java, Multitasking and MultithreadingThreads in java, Multitasking and Multithreading
Threads in java, Multitasking and Multithreading
 
Java Threads And Concurrency Presentation. 2024
Java Threads And Concurrency Presentation. 2024Java Threads And Concurrency Presentation. 2024
Java Threads And Concurrency Presentation. 2024
 
Java-Threads And Concurrency Presentation. 2024
Java-Threads And Concurrency Presentation. 2024Java-Threads And Concurrency Presentation. 2024
Java-Threads And Concurrency Presentation. 2024
 
advanced java ppt
advanced java pptadvanced java ppt
advanced java ppt
 
OOPS object oriented programming UNIT-4.pptx
OOPS object oriented programming UNIT-4.pptxOOPS object oriented programming UNIT-4.pptx
OOPS object oriented programming UNIT-4.pptx
 
Multithreading in Java
Multithreading in JavaMultithreading in Java
Multithreading in Java
 
Multithreading.pptx
Multithreading.pptxMultithreading.pptx
Multithreading.pptx
 
MULTI THREADING IN JAVA
MULTI THREADING IN JAVAMULTI THREADING IN JAVA
MULTI THREADING IN JAVA
 
Thread 1
Thread 1Thread 1
Thread 1
 
Threads in Java
Threads in JavaThreads in Java
Threads in Java
 
Operating System lab
Operating System labOperating System lab
Operating System lab
 
13multithreaded Programming
13multithreaded Programming13multithreaded Programming
13multithreaded Programming
 
JAVA THREADS.pdf
JAVA THREADS.pdfJAVA THREADS.pdf
JAVA THREADS.pdf
 
Runnable interface.34
Runnable interface.34Runnable interface.34
Runnable interface.34
 
Multi threading
Multi threadingMulti threading
Multi threading
 
1.17 Thread in java.pptx
1.17 Thread in java.pptx1.17 Thread in java.pptx
1.17 Thread in java.pptx
 
Multithreading Introduction and Lifecyle of thread
Multithreading Introduction and Lifecyle of threadMultithreading Introduction and Lifecyle of thread
Multithreading Introduction and Lifecyle of thread
 
Java Concurrency, Memory Model, and Trends
Java Concurrency, Memory Model, and TrendsJava Concurrency, Memory Model, and Trends
Java Concurrency, Memory Model, and Trends
 
Md09 multithreading
Md09 multithreadingMd09 multithreading
Md09 multithreading
 
Class notes(week 9) on multithreading
Class notes(week 9) on multithreadingClass notes(week 9) on multithreading
Class notes(week 9) on multithreading
 

More from Abhishek Khune

More from Abhishek Khune (8)

Clanguage
ClanguageClanguage
Clanguage
 
Packages in java
Packages in javaPackages in java
Packages in java
 
Applets
AppletsApplets
Applets
 
Clanguage
ClanguageClanguage
Clanguage
 
Java unit3
Java unit3Java unit3
Java unit3
 
Java unit2
Java unit2Java unit2
Java unit2
 
Linux introduction
Linux introductionLinux introduction
Linux introduction
 
Lecture 14 (inheritance basics)
Lecture 14 (inheritance basics)Lecture 14 (inheritance basics)
Lecture 14 (inheritance basics)
 

Recently uploaded

2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxdhanalakshmis0310
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxAmita Gupta
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 

Recently uploaded (20)

2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 

Threads

  • 1. 1 Java Threads Representation and Management of Data on the Internet
  • 2. 2 Multitasking and Multithreading • Multitasking: – refers to a computer's ability to perform multiple jobs concurrently – more than one program are running concurrently, e.g., UNIX • Multithreading: – A thread is a single sequence of execution within a program – refers to multiple threads of control within a single program – each program can run multiple threads of control within it, e.g., Web Browser
  • 4. 4 Threads and Processes CPU Process 1 Process 3Process 2 Process 4 main run GC
  • 5. 5 What are Threads Good For? • To maintain responsiveness of an application during a long running task • To enable cancellation of separable tasks • Some problems are intrinsically parallel • To monitor status of some resource (e.g., DB) • Some APIs and systems demand it (e.g., Swing)
  • 6. 6 Application Thread • When we execute an application: 1. The JVM creates a Thread object whose task is defined by the main() method 2. The JVM starts the thread 3. The thread executes the statements of the program one by one 4. After executing all the statements, the method returns and the thread dies
  • 7. 7 Multiple Threads in an Application • Each thread has its private run-time stack • If two threads execute the same method, each will have its own copy of the local variables the methods uses • However, all threads see the same dynamic memory, i.e., heap (are there variables on the heap?) • Two different threads can act on the same object and same static fields concurrently
  • 8. 8 Creating Threads • There are two ways to create our own Thread object 1. Subclassing the Thread class and instantiating a new object of that class 2. Implementing the Runnable interface • In both cases the run() method should be implemented
  • 9. 9 Extending Thread public class ThreadExample extends Thread { public void run () { for (int i = 1; i <= 100; i++) { System.out.println(“---”); } } }
  • 10. 10 Thread Methods void start() – Creates a new thread and makes it runnable – This method can be called only once void run() – The new thread begins its life inside this method void stop() (deprecated) – The thread is being terminated
  • 11. 11 Thread Methods void yield() – Causes the currently executing thread object to temporarily pause and allow other threads to execute – Allow only threads of the same priority to run void sleep(int m) or sleep(int m, int n) – The thread sleeps for m milliseconds, plus n nanoseconds
  • 12. 12 Implementing Runnable public class RunnableExample implements Runnable { public void run () { for (int i = 1; i <= 100; i++) { System.out.println (“***”); } } }
  • 13. 13 A Runnable Object • When running the Runnable object, a Thread object is created from the Runnable object • The Thread object’s run() method calls the Runnable object’s run() method • Allows threads to run inside any object, regardless of inheritance Example – an applet that is also a thread
  • 14. 14 Starting the Threads public class ThreadsStartExample { public static void main (String argv[]) { new ThreadExample ().start (); new Thread(new RunnableExample ()).start (); } } What will we see when running ThreadsStartExample?
  • 15. 15
  • 16. 16 Scheduling Threads I/O operation completes start() Currently executed thread Ready queue •Waiting for I/O operation to be completed •Waiting to be notified •Sleeping •Waiting to enter a synchronized section Newly created threads What happens when a program with a ServerSocket calls accept()?
  • 17. 17 Alive Thread State Diagram New Thread Dead Thread Running Runnable new ThreadExample(); run() method returns while (…) { … } Blocked Object.wait() Thread.sleep() blocking IO call waiting on a monitor thread.start();
  • 18. 18 Example public class PrintThread1 extends Thread { String name; public PrintThread1(String name) { this.name = name; } public void run() { for (int i=1; i<100 ; i++) { try { sleep((long)(Math.random() * 100)); } catch (InterruptedException ie) { } System.out.print(name); } }
  • 19. 19 Example (cont) public static void main(String args[]) { PrintThread1 a = new PrintThread1("*"); PrintThread1 b = new PrintThread1("-"); a.start(); b.start(); } }
  • 20. 20
  • 21. 21 Scheduling • Thread scheduling is the mechanism used to determine how runnable threads are allocated CPU time • A thread-scheduling mechanism is either preemptive or nonpreemptive
  • 22. 22 Preemptive Scheduling • Preemptive scheduling – the thread scheduler preempts (pauses) a running thread to allow different threads to execute • Nonpreemptive scheduling – the scheduler never interrupts a running thread • The nonpreemptive scheduler relies on the running thread to yield control of the CPU so that other threads may execute
  • 23. 23 Starvation • A nonpreemptive scheduler may cause starvation (runnable threads, ready to be executed, wait to be executed in the CPU a very long time, maybe even forever) • Sometimes, starvation is also called a livelock
  • 24. 24 Time-Sliced Scheduling • Time-sliced scheduling – the scheduler allocates a period of time that each thread can use the CPU – when that amount of time has elapsed, the scheduler preempts the thread and switches to a different thread • Nontime-sliced scheduler – the scheduler does not use elapsed time to determine when to preempt a thread – it uses other criteria such as priority or I/O status
  • 25. 25 Java Scheduling • Scheduler is preemptive and based on priority of threads • Uses fixed-priority scheduling: – Threads are scheduled according to their priority w.r.t. other threads in the ready queue
  • 26. 26 Java Scheduling • The highest priority runnable thread is always selected for execution above lower priority threads • When multiple threads have equally high priorities, only one of those threads is guaranteed to be executing • Java threads are guaranteed to be preemptive-but not time sliced • Q: Why can’t we guarantee time-sliced scheduling? What is the danger of such scheduler?
  • 27. 27 Thread Priority • Every thread has a priority • When a thread is created, it inherits the priority of the thread that created it • The priority values range from 1 to 10, in increasing priority
  • 28. 28 Thread Priority (cont.) • The priority can be adjusted subsequently using the setPriority() method • The priority of a thread may be obtained using getPriority() • Priority constants are defined: – MIN_PRIORITY=1 – MAX_PRIORITY=10 – NORM_PRIORITY=5 The main thread is created with priority NORM_PRIORITY
  • 29. 29 Some Notes • Thread implementation in Java is actually based on operating system support • Some Windows operating systems support only 7 priority levels, so different levels in Java may actually be mapped to the same operating system level • What should we do about this? • Furthermore, The thread scheduler may choose to run a lower priority thread to avoid starvation
  • 30. 30 Daemon Threads • Daemon threads are “background” threads, that provide services to other threads, e.g., the garbage collection thread • The Java VM will not exit if non-Daemon threads are executing • The Java VM will exit if only Daemon threads are executing • Daemon threads die when the Java VM exits • Q: Is the main thread a daemon thread?
  • 31. 31 Thread and the Garbage Collector • Can a Thread object be collected by the garbage collector while running? – If not, why? – If yes, what happens to the execution thread? • When can a Thread object be collected?
  • 32. 32 ThreadGroup • The ThreadGroup class is used to create groups of similar threads. Why is this needed? “Thread groups are best viewed as an unsuccessful experiment, and you may simply ignore their existence.” Joshua Bloch, software architect at Sun
  • 35. 35 Server import java.net.*;import java.io.*; class HelloServer { public static void main(String[] args) { int port = Integer.parseInt(args[0]); try { ServerSocket server = new ServerSocket(port); } catch (IOException ioe) { System.err.println(“Couldn't run “ + “server on port “ + port); return; }
  • 36. 36 while(true) { try { Socket connection = server.accept(); ConnectionHandler handler = new ConnectionHandler(connection); new Thread(handler).start(); } catch (IOException ioe1) { } }
  • 37. 37 Connection Handler // Handles a connection of a client to an HelloServer. // Talks with the client in the 'hello' protocol class ConnectionHandler implements Runnable { // The connection with the client private Socket connection; public ConnectionHandler(Socket connection) { this.connection = connection; }
  • 38. 38 public void run() { try { BufferedReader reader = new BufferedReader( new InputStreamReader( connection.getInputStream())); PrintWriter writer = new PrintWriter( new OutputStreamWriter( connection.getOutputStream())); String clientName = reader.readLine(); writer.println(“Hello “ + clientName); writer.flush(); } catch (IOException ioe) {} } }
  • 39. 39 Client side import java.net.*; import java.io.*; // A client of an HelloServer class HelloClient { public static void main(String[] args) { String hostname = args[0]; int port = Integer.parseInt(args[1]); Socket connection = null; try { connection = new Socket(hostname, port); } catch (IOException ioe) { System.err.println("Connection failed"); return; }
  • 40. 40 try { BufferedReader reader = new BufferedReader( new InputStreamReader( connection.getInputStream())); PrintWriter writer = new PrintWriter( new OutputStreamWriter( connection.getOutputStream())); writer.println(args[2]); // client name String reply = reader.readLine(); System.out.println("Server reply: "+reply); writer.flush(); } catch (IOException ioe1) { } } Note that the Client has not changed from the networking-lecture example
  • 41. 41 Concurrency • An object in a program can be changed by more than one thread • Q: Is the order of changes that were preformed on the object important?
  • 42. 42 Race Condition • A race condition – the outcome of a program is affected by the order in which the program's threads are allocated CPU time • Two threads are simultaneously modifying a single object • Both threads “race” to store their value
  • 43. 43 Race Condition Example Put green pieces Put red piecesHow can we have alternating colors?
  • 44. 44 Monitors • Each object has a “monitor” that is a token used to determine which application thread has control of a particular object instance • In execution of a synchronized method (or block), access to the object monitor must be gained before the execution • Access to the object monitor is queued
  • 45. 45 Monitor (cont.) • Entering a monitor is also referred to as locking the monitor, or acquiring ownership of the monitor • If a thread A tries to acquire ownership of a monitor and a different thread has already entered the monitor, the current thread (A) must wait until the other thread leaves the monitor
  • 46. 46 Critical Section • The synchronized methods define critical sections • Execution of critical sections is mutually exclusive. Why?
  • 47. 47 Example public class BankAccount { private float balance; public synchronized void deposit(float amount){ balance += amount; } public synchronized void withdraw(float amount){ balance -= amount; } }
  • 49. 49 Java Locks are Reentrant • Is there a problem with the following code? public class Test { public synchronized void a() { b(); System.out.println(“I am at a”); } public synchronized void b() { System.out.println(“I am at b”); } }
  • 50. 50 Static Synchronized Methods • Marking a static method as synchronized, associates a monitor with the class itself • The execution of synchronized static methods of the same class is mutually exclusive. Why?
  • 51. 51 Synchronized Statements • A monitor can be assigned to a block: synchronized(object) { some-code } • It can also be used to monitor access to a data element that is not an object, e.g., array: void arrayShift(byte[] array, int count) { synchronized(array) { System.arraycopy (array, count, array, 0, array.size - count); } }
  • 52. 52 The Followings are Equivalent public synchronized void a() { //… some code … } public void a() { synchronized (this) { //… some code … } }
  • 53. 53 The Followings are Equivalent public static synchronized void a() { //… some code … } public void a() { synchronized (this.getClass()) { //… some code … } }
  • 54. 54 Example public class MyPrinter { public MyPrinter() {} public synchronized void printName(String name) { for (int i=1; i<100 ; i++) { try { Thread.sleep((long)(Math.random() * 100)); } catch (InterruptedException ie) {} System.out.print(name); } } }
  • 55. 55 Example public class PrintThread2 extends Thread { String name; MyPrinter printer; public PrintThread2(String name, MyPrinter printer){ this.name = name; this.printer = printer; } public void run() { printer.printName(name); } }
  • 56. 56 Example (cont) public class ThreadsTest2 { public static void main(String args[]) { MyPrinter myPrinter = new MyPrinter(); PrintThread2 a = new PrintThread2("*“, printer); PrintThread2 b = new PrintThread2("-“, printer); PrintThread2 c = new PrintThread2("=“, printer); a.start(); b.start(); c.start(); } } What will happen?
  • 57. 57
  • 58. 58 Deadlock Example public class BankAccount { private float balance; public synchronized void deposit(float amount) { balance += amount; } public synchronized void withdraw(float amount) { balance -= amount; } public synchronized void transfer (float amount, BankAccount target) { withdraw(amount); target.deposit(amount); } }
  • 59. 59 public class MoneyTransfer implements Runnable { private BankAccount from, to; private float amount; public MoneyTransfer( BankAccount from, BankAccount to, float amount){ this.from = from; this.to = to; this.amount = amount; } public void run() { source.transfer(amount, target); } }
  • 60. 60 BankAccount aliceAccount = new BankAccount(); BankAccount bobAccount = new BankAccount(); ... // At one place Runnable transaction1 = new MoneyTransfer(aliceAccount, bobAccount, 1200); Thread t1 = new Thread(transaction1); t1.start(); // At another place Runnable transaction2 = new MoneyTransfer(bobAccount, aliceAccount, 700); Thread t2 = new Thread(transaction2); t2.start();
  • 62. 62 Thread Synchronization • We need to synchronized between transactions, for example, the consumer- producer scenario
  • 63. 63 Wait and Notify • Allows two threads to cooperate • Based on a single shared lock object – Marge put a cookie wait and notify Homer – Homer eat a cookie wait and notify Marge • Marge put a cookie wait and notify Homer • Homer eat a cookie wait and notify Marge
  • 64. 64 The wait() Method • The wait() method is part of the java.lang.Object interface • It requires a lock on the object’s monitor to execute • It must be called from a synchronized method, or from a synchronized segment of code. Why?
  • 65. 65 The wait() Method • wait() causes the current thread to wait until another thread invokes the notify() method or the notifyAll() method for this object • Upon call for wait(), the thread releases ownership of this monitor and waits until another thread notifies the waiting threads of the object
  • 66. 66 The wait() Method • wait() is also similar to yield() – Both take the current thread off the execution stack and force it to be rescheduled • However, wait() is not automatically put back into the scheduler queue – notify() must be called in order to get a thread back into the scheduler’s queue – The objects monitor must be reacquired before the thread’s run can continue What is the difference between wait and sleep?
  • 67. 67 Consumer • Consumer: synchronized (lock) { while (!resourceAvailable()) { lock.wait(); } consumeResource(); }
  • 69. 69 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8.Return from wait() 9. consumeResource(); 10. }
  • 70. 70 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8. Return from wait() 9. consumeResource(); 10. }
  • 71. 71 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8. Return from wait() 9. consumeResource(); 10. }
  • 72. 72 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8. Return from wait() 9. consumeResource(); 10. }
  • 73. 73 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8. Return from wait() 9. consumeResource(); 10. }
  • 74. 74 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8. Return from wait() 9. consumeResource(); 10. }
  • 75. 75 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8. Return from wait() 9. consumeResource(); 10. }
  • 76. 76 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8. Return from wait() 9. consumeResource(); 10. }
  • 77. 77 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8. Return from wait() 9. consumeResource(); 10. }
  • 78. 78 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8. Return from wait() 9. consumeResource(); 10. }
  • 79. 79 Wait/Notify Sequence Lock Object Consumer Thread Producer Thread 1. synchronized(lock){ 2. lock.wait(); 3. produceResource() 4. synchronized(lock) 5. lock.notify(); 6.} 7. Reacquire lock 8. Return from wait() 9. consumeResource(); 10. }
  • 80. 80 public class SimpsonsTest { public static void main(String[] args) { CookyJar jar = new CookyJar(); Homer homer = new Homer(jar); Marge marge = new Marge(jar); new Thread(homer).start(); new Thread(marge).start(); } } The Simpsons Scenario: SimpsonsTest
  • 81. 81 public class Homer implements Runnable { CookyJar jar; public Homer(CookyJar jar) { this.jar = jar; } public void eat() { jar.getCooky("Homer"); try { Thread.sleep((int)Math.random() * 1000); } catch (InterruptedException ie) {} } public void run() { for (int i = 1 ; i <= 10 ; i++) eat(); } } The Simpsons Scenario: Homer
  • 82. 82 public class Marge implements Runnable { CookyJar jar; public Marge(CookyJar jar) { this.jar = jar; } public void bake(int cookyNumber) { jar.putCooky("Marge", cookyNumber); try { Thread.sleep((int)Math.random() * 500); } catch (InterruptedException ie) {} } public void run() { for (int i = 0 ; i < 10 ; i++) bake(i); } } The Simpsons Scenario: Marge
  • 83. 83 public class CookyJar { private int contents; private boolean available = false; public synchronized void getCooky(String who) { while (!available) { try { wait(); } catch (InterruptedException e) { } } available = false; notifyAll(); System.out.println( who + " ate cooky " + contents); } The Simpsons Scenario: CookieJar
  • 84. 84 public synchronized void putCooky(String who, int value) { while (available) { try { wait(); } catch (InterruptedException e) { } } contents = value; available = true; System.out.println(who + " put cooky " + contents + " in the jar"); notifyAll(); } } The Simpsons Scenario: CookieJar
  • 85. 85 Timers and TimerTask • The classes Timer and TimerTask are part of the java.util package • Useful for – performing a task after a specified delay – performing a sequence of tasks at constant time intervals
  • 86. 86 Scheduling Timers • The schedule method of a timer can get as parameters: – Task, time – Task, time, period – Task, delay – Task, delay, period When to startWhat to do At which rate
  • 87. 87 import java.util.*; public class CoffeeTask extends TimerTask { public void run() { System.out.println(“Time for a Coffee Break”); } public static void main(String args[]) { Timer timer = new Timer(); long hour = 1000 * 60 * 60; timer.schedule(new CoffeeTask(), 0, 8 * hour); timer.scheduleAtFixedRate(new CoffeeTask(), new Date(), 24 * hour); } } Timer Example
  • 88. 88 Stopping Timers • A Timer thread can be stopped in the following ways: – Apply cancel() on the timer – Make the thread a daemon – Remove all references to the timer after all the TimerTask tasks have finished – Call System.exit()

Editor's Notes

  1. Change
  2. Change
  3. Change
  4. Change
  5. Change