java问题,非法表达式的开始

这是书上的一个实例程序,但不知道怎么着,就是不对啊classBowl{Bowl(intmarker){System.out.println("Bowl("+marker+... 这是书上的一个实例程序,但不知道怎么着,就是不对啊
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 Bow1(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 TIJ04271{
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();
}
}

输出结果应该是
Bowl(1)
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)
谢谢各位大侠
问题补充:错误是
-------------------配置: <默认>--------------------
C:\TIJ04271.java:40: 非法的表达式开始
static Table t2=new Table();
^
C:\TIJ04271.java:41: 非法的表达式开始
static Cupboard t3=new Cupboard();
展开
 我来答
私情高丽的伤心
2008-07-25 · TA获得超过285个赞
知道小有建树答主
回答量:279
采纳率:0%
帮助的人:197万
展开全部
class Bowl{
Bowl(int marker){
System.out.println("Bowl("+marker+")");
}
void f(int marker){
System.out.println("f("+marker+")");
}
}
class Table{
//下面这行的Bowl你打错了打成了Bow1,static应该去掉

Bowl b1=new Bowl(1);
Table(){
System.out.println("Table()");
b2.f(1);
}
void f2(int marker){
System.out.println("f2("+marker+")");
}
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);
}
class TIJ04271{
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();
//以下两行的static去掉
//static Table t2=new Table();
//static Cupboard t3=new Cupboard();

Table t2=new Table();
Cupboard t3=new Cupboard();
//注意以下两行的位置
t2.f2(1);
t3.f3(1);
}
}
运行结果:
Creating new Cupboard() in main
Bowl(4)
Bowl(5)
Bowl(3)
Cupboard()
f(2)
Creating new Cupboard() in main
Bowl(3)
Cupboard()
f(2)
Bowl(2)
Bowl(1)
Table()
f(1)
Bowl(3)
Cupboard()
f(2)
f2(1)
f3(1)
Press any key to continue...
结论:
1,不要轻信书本
2,要仔细查找错误
3,写程序时更要仔细
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友7308b15
2008-07-25
知道答主
回答量:30
采纳率:0%
帮助的人:14.4万
展开全部
1 main这里不能声明静态变量,把static去掉.并且放到t2.f2(1); 前面去.
2 static Bowl b1=new Bow1(1); 这句你打错了,后面打成了Bow1(数字1),应该是Bowl
改完就能通过并运行了.另外如果你的main()方法是这样的,你的输出结果不应该是你写的那样.我也是新手,大家一起努力!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
byf1987_gmail
2008-07-25 · TA获得超过299个赞
知道小有建树答主
回答量:241
采纳率:0%
帮助的人:423万
展开全部
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); /////////// 1 -> l
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 TIJ04271{
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);
//////////////// move to below
}
static Table t2=new Table();
static Cupboard t3=new Cupboard();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式