| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 747 人关注过本帖
标题:关于操作符重载的问题
取消只看楼主 加入收藏
yijing21
Rank: 1
等 级:新手上路
帖 子:48
专家分:0
注 册:2007-11-7
收藏
 问题点数:0 回复次数:2 
关于操作符重载的问题
在重载时为什么用#include<iostream>头文件重载<<,>>,==操作符时  明明已经把重载函数申明位友元了,但是在重载函数定义时却不能调用私有成员?把头文件改成#include<iostream.h> 注释掉using namespace std;就可以了呢?  但是在用了#include<iostream.h>后string类又出问题了    请高手指点

#include<iostream>
using namespace std;


class C
{
public:
    C():x(0),y(1){}
    friend ostream &operator << (ostream &,const C &);
private:
    int x;
    int y;
};

ostream &operator << (ostream &out,const C &c1)
{
    out<<c1.x<<" "<<c1.y<<endl;
    return out;
}

int main()
{
    C cc;
    cout<<cc;
    return 0;
}


编译错误
:\program files\microsoft visual studio\myprojects\iostream\io.cpp(17) : error C2248: 'x' : cannot access private member declared in class 'C'
        g:\program files\microsoft visual studio\myprojects\iostream\io.cpp(11) : see declaration of 'x'
g:\program files\microsoft visual studio\myprojects\iostream\io.cpp(17) : error C2248: 'y' : cannot access private member declared in class 'C'
        g:\program files\microsoft visual studio\myprojects\iostream\io.cpp(12) : see declaration of 'y'
g:\program files\microsoft visual studio\myprojects\iostream\io.cpp(24) : error C2593: 'operator <<' is ambiguous


但是头文件改成#include<iostream.h>却可以呢
搜索更多相关主题的帖子: 操作符 重载 
2008-04-07 00:10
yijing21
Rank: 1
等 级:新手上路
帖 子:48
专家分:0
注 册:2007-11-7
收藏
得分:0 
win32平台不是都用VC6多嘛  真是麻烦哦  谁知道具体解决办法啊
2008-04-07 18:55
yijing21
Rank: 1
等 级:新手上路
帖 子:48
专家分:0
注 册:2007-11-7
收藏
得分:0 
楼上的可以解决  能说明下namespace a{}的作用嘛  谢谢
2008-04-08 12:12
快速回复:关于操作符重载的问题
数据加载中...
 
   



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

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