叨叨两句
- 现在我的心理调节能力真是强悍啊,看了那么多书和文章,果然是有用的。
- 有好朋友的感觉真好!哈哈!
牛客网——java专项练习004
1
Test.main() 函数执行后的输出是(D)
A. 11 17 34
B. 22 74 74
C. 6 7 7
D. 22 34 17
2
如下代码的输出结果是什么?(编译错误)
public class Test {
public int aMethod(){
static int i = 0;
i++;
return i;
}
public static void main(String args[]){
Test test = new Test();
test.aMethod();
int j = test.aMethod();
System.out.println(j);
}
}
Java中静态变量只能在类主体中定义,不能在方法中定义。 静态变量属于类所有而不属于方法。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。