java中定义一个对象时是否将类的所有属性和方法都执行一遍

classBowl{Bowl(intmarker){System.out.println("Bowl("+marker+")");}voidf(intmarker){Sy... class Bowl {
Bowl(int marker) {
System.out.println("Bowl(" + marker + ")");
}
void f(int marker) {
System.out.println("f(" + marker + ")"); }
}
class Table {
static Bowl b1 = new Bowl(1);
Table() {
System.out.println("Table()");
b2.f(1);
}
void f2(int marker) {
System.out.println("f2(" + marker + ")"); }
static Bowl b2 = new Bowl(2);
}
class Cupboard {
Bowl b3 = new Bowl(3);
static Bowl b4 = new Bowl(4);
Cupboard() {
System.out.println("Cupboard()");
b4.f(2);
}
void f3(int marker) {
System.out.println("f3("
+ marker + ")");
}
static Bowl b5 = new Bowl(5);
}
public class StaticInitialization {
public static void main(String[] args) {
System.out.println("Creating new Cupboard() in main");
new Cupboard();
System.out.println("Creating new Cupboard() in main");
new Cupboard();
t2.f2(1);
t3.f3(1);
}
static Table t2=new Table();
static Cupboard t3=new Cupboard();
}
它输出什么??谢谢!
展开
 我来答
恐龙空间
2008-04-17 · 超过17用户采纳过TA的回答
知道答主
回答量:59
采纳率:0%
帮助的人:0
展开全部
创建对象时候只执行构造方法里面的全部代码
输出结果是:Bowl(1) //java程序执行时 无论是否创建对象 类变量(static)都被加载到内存中
Bowl(2)
Table()
f(1)
Bowl(4)
Bowl(5)
Bowl(3)
Cupboard()
f(2)
Creating new Cupboard() in main
Bowl(3)
Cupboard()
f(2)
Creating new Cupboard() in main
Bowl(3)
Cupboard()
f(2)
f2(1)
f3(1)
378116454
2008-04-16 · TA获得超过147个赞
知道小有建树答主
回答量:214
采纳率:0%
帮助的人:176万
展开全部
这样写就要看的构造方法写的什么
创建对象时候只执行构造方法里面的全部代码
其他方法 字段 是不执行的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
junpeng1003
2008-04-16 · 超过19用户采纳过TA的回答
知道答主
回答量:458
采纳率:0%
帮助的人:0
展开全部
创建对象时候只执行构造方法里面的全部代码
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式