What is meant by MUTEX in Java?

Showing Answers 1 - 3 of 3 Answers

MUTEX  is achieved in java by the keyword "synchronized" used when two or more methods try to access the same variables/Datastructure. Once a method declared using synchronized keyword no other method can access the variable/data structure use by that method untill it finish its execution.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions