UNIT-4 Multithreading oops
UNIT-4 Multithreading oops
class Test
{
static void display( )
{
s.o.p(“HELLO”);
}
p.s.v main(…)
{
display( );
s.o.p(“WORLD”);
}
}
s.o.p(i+“hello”);
i++;
}
}
}
class Test
{
p.s.v main( )
{
My m=new My( );
Thread t=new Thread(m);
t.start( );
int i=1;
while(true)
{
s.o.p(i+”world”);
i++;
}
}
}
Interfaces are implemented.
➢ The class becomes abstract if it does not implements all the features
of interface.
➢ In the above program it gives the example that the object also runs
when the thread runs.
STATES OF A THREAD
➢ The First state of the thread is new it stores the object of the thread.
➢ To run the object of thread the start method is called.
➢ When start method is called then it is entered into the ready state
where it is ready to run.
➢ Then it enters into the running state.
➢ After completing the task it will enter into the terminated state.
➢ A thread which is terminated is just like a thread which is killed.
➢ Therefore the different states of thread are
NEW READY RUNNING TERMINATED
➢ While running the thread may also enter into different states like:
WAIT STATE: waiting for acquiring some resource or made to
wait by some other thread.
TIME WAIT STATE: to make the thread to delay for some time
using the sleep method, it is also known as sleep state
WAIT AND NOTIFY: where the thread is to be in the waiting
state to get to its chance till it gets notiFied.
BLOCKED STATE: it is just like entering into the monitor where
the thread is being locked for some time, it is similar to waiting
state.
THREAD PRIORITIES
➢ JAVA supports thread priorities from 1-10.
➢ Execution of threads depends upon scheduler.
➢ If a thread is having higher priority then it should get some
preference over other threads.
➢ In java there are different levels of priority that are:
MIN_PRIORITY=1.
NORM_PRIORITY=5.
MAX_PRIORITY=10.
for example:
In MS Word one thread takes the input from the keyboard, another thread
checks for the spellings which works simultaneously, another thread which
works to auto save the document.
In the above the First priority is given to the thread which takes the input
➢ The priority of default thread is always 5.
➢ The higher priority is given to the thread which gets the input or the
data.
➢ The thread with higher priority gets the more CPU time.
➢ Multithreading features are provided by the operating systems but in
java JVM have its own scheduler.
THREAD CLASS
➢ Object of the thread class can be created.
➢ Whenever a thread is created it gets some IDE.
➢ Threads can be identiFied by mentioning their names.
➢ There are different constructors to give the thread classes:
➔ Thread( )
it is a default class.
➔ Thread(Runnable r)
the thread contains the runnable interface.
➔ Thread(Runnable r, String name)
the thread class have its own name with runnable interface.
➔ Thread(ThreadGroup g, String name)
thread group to manage various threads together.
For example:
Different types of balloons or balls in an animation having their own
thread classes is the example for the thread group.
➔ Thread(String name)
the thread class have its own name.
SYNCHRONIZATION
➢ DeRinition: it is the coordination or understanding between two
entities.
➢ In multithreading it is usually used between threads.
➢ Terms important to learn synchronization in multithreading:
➔ Resource Sharing:
it is like more than one thread accessing same resource like
File, network connection, data objects etc
if there is an object in the heap then it can be accessed by
multiple threads.
then than object becomes the shared resource.
➔ Critical Section:
the lines of code in a thread which are accessing the
shared resource/object is the critical section.
it is said to be a piece of code which is critical.
➔ Mutual Exclusion:
the mutual exclusion states that the accessing of one
thread prevents the accessing of another.
➔ Locking/Mutex:
Mutex is the variable used for locking the threads.
if the mutex variable is set to zero then it is free or it is
not occupied.
when the time period of one thread is Finished then the
another thread cannot access the object as the mutex will
not remain zero.
thread two can access the object if and only if the mutex
is zero again.
for every shared resource there should be a lock which is
being applied by the thread itself.
here the threads are responsible for mutual exclusion.
mutex was not useful as the threads would be
overlapping each other if the mutex was not being locked
by the First one.
➔ Semaphore:
semaphore was like an operating system before the
introducing of java to control the coordination of threads
as they should not overlap.
it was supported by UNIX operating system.
the semaphore creates the scenario where the thread
which have been occupying the object would signal the
other after its work is Finished.
it creates a block queue where the upcoming thread is to
be in waiting state.
the methods used here are wait( ) and signal( ).
here the operating system have the mutual exclusion.
➔ Monitor:
here the object itself takes the responsibility for the
mutual exclusion.
it can be achieved using object orientation.
the complete mechanism is inside the object itself.
the read and write method, the data and the block queue
belongs to the shared object itself as it can be accessed
by any of the threads at a particular time.
Here java makes sure than one thread is accessed at a
time.
example program:
class MyData
{
void display (String str)
{
synchronize(this)
{
for(int
i=0;i<str.length();i++)
{
s.o.p(str.charAt(i));
}
}
}
}
class MyThread1 extends Thread
{
Mydata d;
MyThread1(MyData dat){d=dat;}
public void run()
{
d.display(“Hello World”);
}
}
class MyThread2 extends Thread
{
Mydata data;
MyThread2(MyData dat)
{data=dat;}
public void run()
{
d.display(“Welcome”);
}
}
class Test
{
p.s.v.main(…)
{
MyData d=new Mydata( );
Mythread1 t1=new
MyThread1(d);
MyThread2 t2=new
MyThread(d);
t1.start( );
the classes Mythread1 and Mythread2 access the data
from the display class which is the shared object.
the synchronize method is used to execute the classes
separately in the above example.
synchronize method prints the data separately from both
thread in other words it prevents the data to be
overlapped.
the for loop inside the synchronize prints one method at
a time.
The other method for synchronization is to write the
synchronize at the signature method of the display class
so the whole method is being synchronized.
➔ Inter-thread communication:
it is the communication between the synchronized
threads.
it is the communication between a single producer
thread and a consumer thread.
the inter-thread communication refers to the
synchronization between the producer thread and the
consumer thread to access the write and read method
simultaneously.
used.
➔ Race condition:
here there is a single producer thread and multiple
consumer threads.
here all consumers do not execute at once they do in a
round robin fashion.
when the count is zero then it is the producers turn.
and when the count is not zero then it is the consumers
turn.
since there are more than one consumer any of the
consumer can access it.
the notify method can open any thread her as they may
not be in an order.
The race condition states that
If one thread is accessing the shared resource and
all other are blocked then once the thread has Finished.
working it will inform the thread and any of the threads
may access the object just like in a race.
So, in the above the count method is used to control the
race.
the race condition can be avoided by the inter-thread
condition.
example program:
class MyData
{
int value=0;
boolean flag=true;
synchronised void set(int v)
{
while(flag!=true)
wait( );
value=v;
flag=false;
notify( );
}
synchronized int get( )
{
int x=0;
while(flag!=false)
wait( )
X=value;
flag=true;
notify;
return x;
}
}
Generic Classes
Definition: Classes that can operate on objects of various types
while providing compile-time type safety.
Syntax: class ClassName<T> { /*...*/ }
o T is a type parameter that will be replaced by a concrete type
Usage:
Generic Methods
Definition: Methods that introduce their own type parameters,
independent of the class's type parameters.
Syntax: <T> ReturnType methodName(T param) {
/*...*/ }
o
Example:
public static <T> void printArray(T[] inputArray) {
for (T element : inputArray) {
System.out.printf("%s ", element);
}
}
Usage:
Bounded Types
Purpose: Restrict the types that can be used as type parameters.
Upper Bounded Types: Limits to a specific type or its subclasses.
o Syntax: <T extends SuperClass>
Example:
public <T extends Number> void processNumbers(T t) {
System.out.println(t.doubleValue());
}
Usage: