Java and Multi Threading
Java and Multi Threading
Presented By :-
Shraddha Sheth
Main Method
Module
switching switching
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
start stop
Runnable Dead
State State
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()
……...... ……......
suspended
resume
Runnable Sleeping
Running
3. Wait() and notify() methods :- blocked
until certain condition occurs
wait
notify
start
stop
Killed
Thread
suspended resume stop
sleep notify
wait
Idle Thread
(Not Runnable) Blocked
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();
Thread(Runnable r)
Thread(Runnable r, String s)
Thread(String s)
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..