Are the following two method definitions semantically equivalent? Why? Why not?
Version A:
private static synchronized void foo() {
bar();
}
Version B:
private static Semaphore available = new Semaphore(1, true);
private static void foo() {
available.acquire();
try {
bar();
}
finally {
available.release();
}
}