鱼C论坛

 找回密码
 立即注册
查看: 2822|回复: 2

如何用友元给类的 string私有成员输入值???

[复制链接]
发表于 2013-10-31 23:52:55 | 显示全部楼层 |阅读模式

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

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

x
用友元函数给 string成员输入值时出错
friend std::istream & operator>>(std::istream & is, const shcoo & y)
以下贴出源码


#include <iostream>
#include <string>
using  std::string;
class shcoo
{
private:
      string S_ne;
public:
      shcoo(const string & x);
      
      
      void xie();
      void xian();
      
      ////????
      friend std::istream & operator>>(std::istream & is, const shcoo & y)
      {
            is >> y.S_ne; //为什么执行到这里的时候出错???
            
            return is;
      }
      /////????
      
      friend std::ostream & operator<<(std::ostream & os, const shcoo & y);
      
};

/////--->>>
std::ostream & operator<<(std::ostream & os, const shcoo & y)
{
      std::cout <<  y.S_ne << std::endl;
      
      return os;
}
void shcoo::xian()
{
      std::cout << S_ne << std::endl;
}
void shcoo::xie()
{
      std::cin >> S_ne;
      
}

shcoo::shcoo(const string & x)
{
      S_ne = x;
}

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

使用道具 举报

发表于 2013-11-1 16:34:19 | 显示全部楼层
把main函数加上吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2013-11-1 17:00:11 | 显示全部楼层
friend std::istream & operator>>(std::istream & is, const shcoo & y)
所谓输入,就是要用一些数据改变y,所以y不能是const引用,应改为
friend std::istream & operator>>(std::istream & is, shcoo & y)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-22 10:13

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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