Jak sprawić, by wątek metody był bezpieczny w Javie

class MyCounter {
	private static int counter = 0;
 
	public static synchronized int getCount() {
		return counter++;
	}
}
Condemned Crane