以下のコードに関する簡単な質問:
public class Test {
public final static Test t1 = new Test("test 1");
public final static Test t2 = new Test("test 2");
public final static Test t3 = new Test("test 3");
private String s;
private Test (string s1) {
s = s1;
}
}
このコードがそれ自体の無制限のインスタンスを作成するかどうかについて混乱していますか?