What is the life cycle of Thread ?
Answer Posted / shajin.a.xavier
Multithreading is the mechanism in which more than one
thread run independent of each other within the process.
wait (), notify () and notifyAll() methods can be used for
inter-thread communication and these methods are in Object
class. wait() : When a thread executes a call to wait()
method, it surrenders the object lock and enters into a
waiting state. notify() or notifyAll() : To remove a thread
from the waiting state, some other thread must make a call
to notify() or notifyAll() method on the same object.
| Is This Answer Correct ? | 16 Yes | 6 No |
Post New Answer View All Answers
What are the types of arrays in java?
What is a nested class?
What are java packages?
How to reverse string in java?
Does java allow default arguments?
What is object english?
What is data type example?
Is main an identifier?
How is java created?
What is byte value?
Define immutable object?
What does index mean in java?
Why to use nested classes in java? (Or) what is the purpose of nested class in java?
Explain differences between checked and unchecked exceptions in java?
What happens when main () method is declared as private?