| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 553 人关注过本帖
标题:[求助]这个重载程序好像没错,但提示错误
取消只看楼主 加入收藏
117ai
Rank: 1
等 级:新手上路
帖 子:200
专家分:0
注 册:2006-12-9
收藏
 问题点数:0 回复次数:1 
[求助]这个重载程序好像没错,但提示错误

class Try{
int x;
int y;
Try(int m){
x=m;
y=m;
}
Try(int m,int n){
x=m;
y=n;
}
int compute(){
return x+y;
}
int comput(int mul){
return (x+y)*mul;
}
}

class 重载{
public static void main(String args[]){
Try tryone;
Try trytwo;
tryone=new Try(5);
trytwo=new Try(10,10);
System.out.println(tryone.compute());
System.out.println(tryone.compute(3));
System.out.println(trytwo.compute());
System.out.println(trytwo.compute(3));
}
}
这个重载程序好像没错,但提示错误,我不明白为什么错

搜索更多相关主题的帖子: 提示 重载 
2006-12-17 21:30
117ai
Rank: 1
等 级:新手上路
帖 子:200
专家分:0
注 册:2006-12-9
收藏
得分:0 
哦,这个是我没没清楚,不好思意,但不是那里错也运行不了`它说:java.lang.NoSuchMethodError:main
Exception in thread"main"
这就很难理解了~!

人真的很奇怪,以前看书时老喜欢看表,希望时间快点过;现在看书总是不敢看表,但时间却很快过!
2006-12-17 23:40
快速回复:[求助]这个重载程序好像没错,但提示错误
数据加载中...
 
   



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

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