How the threads are synchronized?
Answers were Sorted based on User's Feedback
Answer / seshadri pera
Threads are synchronized in two ways.
1) block level
2) Method level
Block level synhronization is the better performance
compare to method level.
Block Level:
see the code syntax for block level
synchronized {..
....//code to lock the specific object here..
...}
Method Level:
See the syntax
public void synchronized XXXMethodName(Parameters or
object to acquire locking){.....
...}
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / dsr
By using wait(),notify and notifyall() methods in the code.
| Is This Answer Correct ? | 2 Yes | 4 No |
what is difference between perfom() & excute() ?
What does java ide mean?
What is the driver class?
Difference between abtsract & final
What is the relationship between class and object?
Are primitives objects?
What does escaping a character mean?
what r callable statement and give their proper use
What do you mean by constructor?
What is fail fast in java?
Differentiate between postfix and prefix operators in java.
Can constructor be inherited?