, .
, public static , , private static , .
, , . , , , , . - :
class Foo {
private static int nextId = 0;
private static int getNext () {
return nextId ++;
}
public final int id;
public Foo () {
id = getNext();
}
}
, , , :
public static int getInstancesCount () {
return nextId;
}
ClassName.methodName: , , . , , methodName .