(Resolvido)Exercicio 9-2 do SCJP kathy

public class C9d extends Thread {
StringBuffer Letra;

C9d(StringBuffer letra) {
	this.Letra = letra;
}

public void run() {

	synchronized (Letra) {

		for (int i = 0; i <= 100; i++)
			System.out.println(Letra+" i "+i);
		char temp = Letra.charAt(0);
		++medidor;
		Letra.setCharAt(0, medidor);
	}
}

public static void main(String[] args) {
	StringBuffer stringBuffer = new StringBuffer("A");
	new C9d(stringBuffer).start();
	new C9d(stringBuffer).start();
	new C9d(stringBuffer).start();
}

}

é isso que ela quer???

tem a resposta no final do capitulo…

Valeu