免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2312 | 回复: 8
打印 上一主题 下一主题

关于return的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-08-14 12:27 |只看该作者 |倒序浏览
class Rational{
int n,d = 1;
public Rational(){;}
public Rational(Rational r){;}
public Rational(int n, int d){
  this.d = d;
  this.n = n;
  int x = 1;
  x = d%n;
  while (x != 0 ){
   n = d;
   d = x;
   x = d%n;
  }         //辗转相除
  this.d = this.d/n;
  this.n = this.n/n;
}
  public Rational gcd(){
  int x = this.d % this.n;
  int n = this.n,d = this.d;
  while (x != 0 ){
   n = d;
   d = x;
   x = d%n;
  }
  this.d = this.d/n;
  this.n = this.n/n;    return this;
}
public Rational add(Rational r){
  this.n = this.n*r.d + this.d*r.n;
  this.d = this.d*r.d;
  return this.gcd();
}
public Rational minus(Rational r){
  this.n = this.n*r.d - this.d*r.n;
  this.d = this.d*r.d;
  return this.gcd();
}
public Rational multiply(Rational r){
  this.n = this.n*r.n;
  this.d = r.d*this.d;
  return this.gcd();
}
public Rational devided(Rational r){
  this.n = this.n*r.d;
  this.d = this.d*r.n;
  return this.gcd();
}
public void print(){
  System.out.println("the value is " + n + "/" + d);//显示分数
}
}
public class TestR{
public static void main(String[] str){
  Rational r1 = new Rational(2,4);
  Rational r2 = new Rational(3,9);
  Rational r3 = new Rational(2,4);
  Rational r4 = new Rational(2,4);
  Rational r5 = new Rational(2,4);
  r1.print();
  r2.print();
  r1.add(r2);
  r1.print();
  r3.minus(r2);
  r3.print();
  r4.multiply(r2);
  r4.print();
  r5.devided(r2);
  r5.print();
}
}
代码如上,所得结果为:
the value is 1/2
the value is 1/3
the value is 5/6
the value is 1/6
the value is 1/6
the value is 1/1

如果做以下修改,(主要是几个方法的返回类型)如下:
class Rational{
int n,d = 1;
public Rational(){;}
public Rational(Rational r){;}
public Rational(int n, int d){//约分存数据
  this.d = d;
  this.n = n;
  int x = 1;//n是最大公约数
  x = d%n;
  while (x != 0 ){
   n = d;
   d = x;
   x = d%n;
  }         //辗转相除
  this.d = this.d/n;
  this.n = this.n/n;
}
  public void gcd(){
  int x = this.d % this.n;
  int n = this.n,d = this.d;
  while (x != 0 ){
   n = d;
   d = x;
   x = d%n;
  }
  this.d = this.d/n;
  this.n = this.n/n;   //求最简分数形式
  //return this;
}
public void add(Rational r){
  this.n = this.n*r.d + this.d*r.n;
  this.d = this.d*r.d;
  //return this.gcd();
}
public void minus(Rational r){
  this.n = this.n*r.d - this.d*r.n;
  this.d = this.d*r.d;
  //return this.gcd();
}
public void multiply(Rational r){
  this.n = this.n*r.n;
  this.d = r.d*this.d;
  //return this.gcd();
}
public void devided(Rational r){
  this.n = this.n*r.d;
  this.d = this.d*r.n;
  //return this.gcd();
}
public void print(){
  System.out.println("the value is " + n + "/" + d);//显示分数
}
}
public class TestR{
public static void main(String[] str){
  Rational r1 = new Rational(2,4);
  Rational r2 = new Rational(3,9);
  Rational r3 = new Rational(2,4);
  Rational r4 = new Rational(2,4);
  Rational r5 = new Rational(2,4);
  r1.print();
  r2.print();
  r1.add(r2);
  r1.print();
  r3.minus(r2);
  r3.print();
  r4.multiply(r2);
  r4.print();
  r5.devided(r2);
  r5.print();
}
}
所得结果为:
the value is 1/2
the value is 1/3
the value is 5/6
the value is 1/6
the value is 1/6
the value is 3/2

请大家指点.另外:
非构造方法方法最后能不能返回this啊?

论坛徽章:
0
2 [报告]
发表于 2008-08-14 12:31 |只看该作者
非构造方法最后不能做到返回this,不过楼主的代码挺好的,唯一就是少了注释

论坛徽章:
0
3 [报告]
发表于 2008-08-14 14:12 |只看该作者
谢谢楼上,
还有就是为什么我的第一段代码可以运行得到结果,而除法的结果是错的呢.
真搞不懂,除法的方法并没有写错啊

论坛徽章:
0
4 [报告]
发表于 2008-08-14 21:31 |只看该作者
原帖由 julio 于 2008-8-14 14:12 发表
谢谢楼上,
还有就是为什么我的第一段代码可以运行得到结果,而除法的结果是错的呢.
真搞不懂,除法的方法并没有写错啊

那不是除吧,是余吧

论坛徽章:
0
5 [报告]
发表于 2008-08-14 23:06 |只看该作者
非构造方法方法最后能不能返回this啊?
这句话什么意思?如果JAVA6没改规则,构造方法是不能返回值的也包括this
任何方法都可以返回this,当然首先方法签名的返回值需要是当前类型的
顺路谢谢2楼的兄台

论坛徽章:
0
6 [报告]
发表于 2008-08-15 09:58 |只看该作者
原帖由 艾斯尼勒 于 2008-8-14 23:06 发表
非构造方法方法最后能不能返回this啊?
这句话什么意思?如果JAVA6没改规则,构造方法是不能返回值的也包括this
任何方法都可以返回this,当然首先方法签名的返回值需要是当前类型的
顺路谢谢2楼的兄台

嗯,当然首先方法签名的返回值需要是当前类型的,说得很好,

学习到了,谢谢

论坛徽章:
0
7 [报告]
发表于 2008-08-15 19:06 |只看该作者
这样啊,了解了,谢谢

论坛徽章:
0
8 [报告]
发表于 2008-08-18 09:01 |只看该作者
原帖由 艾斯尼勒 于 2008-8-14 23:06 发表
非构造方法方法最后能不能返回this啊?
这句话什么意思?如果JAVA6没改规则,构造方法是不能返回值的也包括this
任何方法都可以返回this,当然首先方法签名的返回值需要是当前类型的
顺路谢谢2楼的兄台


有继承关系的也可以的吧

论坛徽章:
0
9 [报告]
发表于 2008-08-18 12:10 |只看该作者
原帖由 starxing 于 2008-8-18 09:01 发表


有继承关系的也可以的吧

恩。this instanceof(返回值类型) == true  就可以了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP