Quick question about the code below:
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;
    }
}
I am confused as to whether this code will create unlimited instances of itself?
 
     
     
     
     
    