题型:单选题 标签:代码
题目:
16. 有如下代码:
public class Test{
public int f(){
static int i=0;
i++;
return i;
}
public static void main(String args[]){
Test test=new Test();
test.f();
int j=test.f();
System.out.println(j);
}
}
上述代码的输出结果是______。
A.0
B.2
C.1
D.编译失败