Answer Posted / john noah
In a single threaded system program executes in a sequence
line by line. Multithreaded system can allow multiple
threads to execute a program parallel in multiple instances.
If there is any part of code dealing with the object data
modification, there is no guarantee that it will not be
attempted any more than one thread at a time.
there's a need to make sure that such kind of code should be
executed exclusively. To achieve this in Java we a concept
of LOCK. Using Lock mechanism thread holds complete hold on
an object and object is also can not be access any other
thread except the thread holding that lock. Lock is an
object level control and one thread only can hold it at a time.
Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
what is deadlock? : Java thread
How many bytes is string in java?
What is prime number in java?
Lowest Common ancestor in a Binary Search Tree and Binary Tree.
What does this () mean in java?
what is function overloading in java?
Is it possible to use Semaphore/ Mutex in an Interrupt Handler?
How many types of methods are there?
How does a for loop work?
How many unicode characters are there?
What is deserialization?
How java enabled high performance?
What about static nested classes in java?
What are abstract classes and anonymous classes?
What is extension method in java?