Knowledge database
static int x = getValue(); static int y = 5; static int z = getValue(); static int getValue() { return y; } @Test public void staticTest() { prn("x=" + x);//x=0 prn("z=" + z);//z=5 }
Brak komentarzy:
Prześlij komentarz