Does anyone know which of the two locking constructs is faster? I have:
private static final Object mutex = new Object();
void method() {
synchronized(mutex) {
// code
}
}
vs:
BoundedSemaphore semaphore = new BoundedSemaphore(1);
void method() {
semaphore.take();
try{
//code
} finally {
semaphore.release();
}
}
Thanks, everyone. Matt
synchronizedblocks are re-entrant, but theBoundedSemaphoreis not. – Binil Thomas May 31 '11 at 6:50