public class StaticTest {static int x = 1;int y;static {x++;}StaticTest() {x++;y++;}public static void main(String args[]) {StaticTest st = new StaticTest();System.out.println("st.x=" + st.x);System.out.println("st.y=" + st.y);st = new StaticTest();System.out.println("st.x=" + st.x);System.out.println("st.y=" + st.y); }}代码段的运行结果是: 备选答案:A.st.x=2↓st.y=2↓st.x=3↓st.y=2↓ B. st.x=3↓st.y=1↓st.x=3↓st.y=1↓ C.st.x=2↓st.y=1↓st.x=3↓st.y=1↓ D.st.x=3↓st.y=1↓st.x=4↓st.y=1↓