鱼C论坛

 找回密码
 立即注册
查看: 2299|回复: 4

输出流重载没搞清楚所以这里又搞不懂了!!!

[复制链接]
发表于 2013-11-19 22:04:23 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 cyshhm 于 2013-11-19 22:15 编辑

#include<iostream>
#include<string>
class yls//有理数的计算
{
      int a,b;
      yls jhfs(const yls &sr);
public:
      yls();
      yls(int j);
      yls(int j,int k);
      yls operator+(const yls &sr);
      yls operator-(const yls &sr);
      yls operator*(const yls &sr);
      yls operator/(const yls &sr);
      std::ostream&  operator<<(std::ostream& oo,const yls &sr);//这里我就是想把输出流操作符重载在类中的 为了就是明白 输出流重载的参数的真正目的
};

std::ostream& yls::operator<<(std::ostream& oo,const yls &sr)

{
      oo<<sr.a<<"/"<<sr.b;
      return oo;
}

yls yls::jhfs(const yls &sr)
{
      int i,j,k;
      yls c;

      i=sr.a;
      j=sr.b;

      if(j<0)
      {
            c.a=-i;
            c.b=j=-j;
      }
      else
      {
            c.a=i;
            c.b=j;
      }

      i=i>0?i:-i;

      while(i)
      {
            k=j%i;
            j=i;
            i=k;
      }

      c.a/=j;
      c.b/=j;

      return c;
}

yls yls::operator+(const yls &sr)
{
      yls c;

      c.a=b*sr.a + a*sr.b;
      c.b=sr.b*b;

      return c;
}
yls yls::operator-(const yls &sr)
{
      yls c;

      c.a=sr.a*b-a*sr.b;
      c.b=sr.b*b;

      return c;
}
yls yls::operator*(const yls &sr)
{
      yls c;

      c.a=sr.a*a;
      c.b=sr.b*b;

      return c;
}
yls yls::operator/(const yls &sr)
{
      yls c;

      c.a=sr.a*b;
      c.b=sr.b*a;

      return c;
}

yls::yls(int j,int k)
{
      this->a=j;
      this->b=k;
}

yls::yls()
{
      this->a=0;
      this->b=1;
}

yls::yls(int j)
{
      this->a=j;
      this->b=1;
}

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2013-11-19 22:05:46 | 显示全部楼层
本帖最后由 cyshhm 于 2013-11-19 22:22 编辑

不仅求答案 而且求 原因和解说!!!
谢谢啦

我学习  喜欢刨根问底儿
不求把根刨完 能刨点刨点吧

我是一个贪婪的人希望别人 "授人(我)以鱼" 也喜欢别人 "授人(我)鱼"

跪求啦!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2013-11-19 22:07:40 | 显示全部楼层
看不懂 帮你顶下
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2013-11-20 10:59:07 | 显示全部楼层
来人啊! 救救我这个题吧!!!!!!!!!!!!!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2013-11-20 19:25:02 | 显示全部楼层
{:2_28:}{:2_28:}{:2_28:}{:2_28:}{:2_28:}{:2_28:}{:2_28:}{:2_28:}
{:2_28:}{:2_28:}{:2_28:}{:2_28:}{:2_28:}{:2_28:}{:2_28:}{:2_28:}

坐等啊!!!!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 15:20

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表