• 2021-04-14
    有如下代码,则该程序运行时输出结果是。
    class Test{
    static int i=0;
    public void show() {
    i++;
    System.out.println(i);
    }
    }
    public class Demo {
    public static void main(String[] args) {
    Test test=new Test();
    test.show();
    }
    }