| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 396 人关注过本帖
标题:[求助]帮忙看一看这个程序有什么错误!!
只看楼主 加入收藏
photoshopcs
Rank: 1
等 级:新手上路
帖 子:65
专家分:0
注 册:2007-3-21
收藏
 问题点数:0 回复次数:5 
[求助]帮忙看一看这个程序有什么错误!!

谢谢大家了!!
class Table{
int weight,wide,length,high,area;
char name;
Table(char x,int y,int z,int l,int m)
{name=x;
length=y;
wide=z;
high=l;
weight=m;
}
void area()
{area=length*wide;}
void display()
{
System.out.println("name is"+name);
System.out.println("length is"+length);
System.out.println("wide is"+wide);
System.out.println("high is"+high);
System.out.println("area is"+area);
System.out.println("weigth is"+weight);
}
void changeweight(int n)
{weight=n;}
public static void main(String args[]){

Table t;
t= new Table ( );
t.Table("s",12,13,14,15);
t.area();
t.display();
t.changeweight(16);
t.display();
}
}

搜索更多相关主题的帖子: display display 
2007-04-01 13:48
Eastsun
Rank: 7Rank: 7Rank: 7
等 级:贵宾
威 望:32
帖 子:802
专家分:0
注 册:2006-12-14
收藏
得分:0 

class Table{
int weight,wide,length,high,area;
char name;
Table(char x,int y,int z,int l,int m)
{name=x;
length=y;
wide=z;
high=l;
weight=m;
}
void area()
{area=length*wide;}
void display()
{
System.out.println(\"name is\"+name);
System.out.println(\"length is\"+length);
System.out.println(\"wide is\"+wide);
System.out.println(\"high is\"+high);
System.out.println(\"area is\"+area);
System.out.println(\"weigth is\"+weight);
}
void changeweight(int n)
{weight=n;}
public static void main(String args[]){

Table t;
t= new Table('s',12,13,14,15);
t.area();
t.display();
t.changeweight(16);
t.display();
}
}


楼主还是好好学学基本功吧


My BlogClick Me
2007-04-01 14:35
黄袖标
Rank: 4
等 级:贵宾
威 望:13
帖 子:676
专家分:0
注 册:2007-3-22
收藏
得分:0 
t= new Table ( );
t.Table("s",12,13,14,15);

你已经自己定义了一个构造函数,系统就不会生成默认的空的构造函数,所以会出问题,在说你上面的写法也有问题。

我胡汉三又回来啦!物是人非啊,只有静夜思大大还在。
2007-04-01 14:38
fqj793
Rank: 1
等 级:新手上路
威 望:2
帖 子:228
专家分:0
注 册:2006-12-9
收藏
得分:0 
你的"s"也是一个问题,因为你在构造函数中定义的是char,而在传递时却是"s",是string

知识改变命运!!!
2007-04-01 14:43
千里冰封
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:灌水之王
等 级:版主
威 望:155
帖 子:28477
专家分:59
注 册:2006-2-26
收藏
得分:0 
以下是引用黄袖标在2007-4-1 14:38:31的发言:
t= new Table ( );
t.Table("s",12,13,14,15);

你已经自己定义了一个构造函数,系统就不会生成默认的空的构造函数,所以会出问题,在说你上面的写法也有问题。

JAVA中是不允许这样调用的


可惜不是你,陪我到最后
2007-04-02 09:08
photoshopcs
Rank: 1
等 级:新手上路
帖 子:65
专家分:0
注 册:2007-3-21
收藏
得分:0 
好厉害的大师们谢谢
2007-04-02 17:44
快速回复:[求助]帮忙看一看这个程序有什么错误!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.037245 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved