Hi Friends, I am new to java. Can u explain about thread
concept.How i know one thread is locked, and how can i force
or acquire another thread for lock . Finally how to know
thread is released from lock. Explain types of lock(like
method level and block level) in thread.
Answer / ravikiran
Thread is a sequential flow of control
With the help of wait(),notify(),notifyAll() methods from
the Object class
We can force a thread to be locked by making the object to
be synchronized or putting the code inside a synchronized block
We will got to know the unlocking status with the help of
notify / notifyAll method calls.
Method level block will provide a lock for the whole method
access.Block level lock will lead to a particular portion of
a program to be get locked.
| Is This Answer Correct ? | 2 Yes | 0 No |
What are the names of interfaces that doesn't consists of method/s ?
What is the nested interface?
What are the ways to instantiate the class class?
What are the concepts of 'OOPS'?
Is singleton set an interval?
steps to connect with Oracle Databse using TYPE-2 Jdbc driver.
what difference between throw and throws in exception handling.
What is the difference between a scrollbar and a scrollpane?
What is an object in Java and what are its benefits?
How to do encapsulation in java?
How can a class be accessed, If no access modifiers are declared?
What all access modifiers are allowed for top class ?