这个程序怎么改?错误:公用类型 StaticInitialization 必须在它自己的文件中定义

publicclassBowl{Bowl(intmaker){System.out.println("Bowl("+maker+")");}voidf(intmaker)... public class Bowl
{
Bowl(int maker)
{
System.out.println("Bowl(" + maker + ")");
}
void f(int maker)
{
System.out.println("f(" + maker + ")");
}
}

class Table
{
static Bowl b1 = new Bowl(1);
Table()
{
System.out.println("Table()");
b2.f(1);
}
void f2(int maker)
{
System.out.println("f2(" + maker + ")");
}
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 maker)
{
System.out.println("f3(" + maker + ")");
}
static Bowl b5= new Bowl(5);
}

public class StaticInitialization
{
public static void main(String[] args)
{
System.out.println("Creating in main");
new Cupboard();
System.out.println("Creating in main");
new Cupboard();
t2.f2(1);
t3.f3(1);
}
static Table t2 = new Table();
static Cupboard t3 = new Cupboard();

}
展开
 我来答
乌微月2S
2013-12-01 · TA获得超过5037个赞
知道大有可为答主
回答量:5361
采纳率:42%
帮助的人:2860万
展开全部
你应该是在一个java文件中写了2个public class 这样是不可以的。
public class Bowl

public class StaticInitialization

你的文件名应该叫Bowl吧,你应该吧StaticInitialization 单独拆分出来写到一个文件中。
追问
嗯,前面声明了下包:package
StaticInitialization
可以运行了。。
aoisora_blue
2013-12-01 · TA获得超过412个赞
知道小有建树答主
回答量:583
采纳率:0%
帮助的人:363万
展开全部
一个文件里面不能出现两个public的类
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-12-01
展开全部
就是说文件名应该是StaticInitialization
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式