FileDocCategorySizeDatePackage
Reentrant.javaAPI DocExample199Tue Dec 12 18:57:48 GMT 2000None

Reentrant.java

public class Reentrant {
    public synchronized void a() {
	b();
	System.out.println("here I am, in a()");
    }
    public synchronized void b() {
	System.out.println("here I am, in b()");
    }
}