So machen Sie einen Methodenfaden in Java sicher
class MyCounter {
private static int counter = 0;
public static synchronized int getCount() {
return counter++;
}
}
Condemned Crane