谁会做java程序填空题,求帮忙,谢了

1、写出下面程序运行之后的结果:classStaticInitDemo{staticinti;static{i=5;System.out.println("Staticc... 1、写出下面程序运行之后的结果:
class StaticInitDemo{
static int i;
static{
i =5;
System.out.println("Static code:i = " + i++);
}
}
public class TestStaticInit{
public static void main(String[] args) {
System.out.println("Main code: i = " + StaticInitDemo.i);
}
}
(1)运行结果为:______________________________________

2、写出下面程序运行之后的结果:
class Outer{
private int size;
class Inner{
void doStuff(){
size++;
System.out.println("The size value of the Outer class:" + size);
}
}
}
public class TestInner{
public static void main(String[] args) {
Outer out = new Outer();
Outer.Inner in = out.new Inner();
in.doStuff();
}
}
(2)运行结果为:______________________________________

3、写出下面程序运行之后的结果:
public class test {
public static void main(String[] args) {
int i = 0;
for (i++;i++<10; i++);
System.out.println(++i);
}
}
(3)运行结果为:______________________________________
展开
 我来答
找红太郎的灰灰
2015-01-25 · TA获得超过285个赞
知道小有建树答主
回答量:221
采纳率:0%
帮助的人:190万
展开全部
1、Static code:i = 5 Main code: i = 6
2、The size value of the Outer class:1
3、13
白菜一颗
2015-01-25 · TA获得超过8916个赞
知道大有可为答主
回答量:3260
采纳率:69%
帮助的人:3749万
展开全部
第一题:
Static code:i = 5

Main code: i = 6
第二题:
The size value of the Outer class:1

第三题:
13
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式