Answers

Question and Answer:

  Home  Integration Programmer

⟩ Explain about critical section?

critical section is the part of a code, which is very important and in multi-threading must be exclusively modified by any thread. Semaphore or mutex is used to protect critical section. In Java you can use synchronized keyword or ReentrantLock to protect a critical section.

 227 views

More Questions for you: