标题:重载函数求助
取消只看楼主
逆水寒刘
Rank: 3Rank: 3
等 级:论坛游侠
威 望:2
帖 子:76
专家分:117
注 册:2013-3-27
结帖率:90%
已结贴  问题点数:20 回复次数:3 
重载函数求助
#include<iostream>
using namespace std;
class Point
{
public:
    Point(){ x=0; y=0;}
    Point(float a ,float b){ x=a; y=b;}
    float GetX()const{return x;}
    float GetY()const{return y;}
    float area(){return 0;}
    friend ostream & operator<<(ostream&,Point&);
protected:
    float x;
    float y;
};
ostream& operator <<(ostream &output,const Point &point)
{
    output<<"("<<point.x<<","<<point.y<<")"<<endl; //提示这里没有访问权限,不是申请唯有原函数了吗?不懂。求助解疑   
    return output;
}
int main()
{
    return 0;
}
搜索更多相关主题的帖子: namespace include public around 
2013-05-12 13:08
逆水寒刘
Rank: 3Rank: 3
等 级:论坛游侠
威 望:2
帖 子:76
专家分:117
注 册:2013-3-27
得分:0 
回复 2楼 apull
还是不对呀
2013-05-12 19:16
逆水寒刘
Rank: 3Rank: 3
等 级:论坛游侠
威 望:2
帖 子:76
专家分:117
注 册:2013-3-27
得分:0 
回复 7楼 kiadragon
通过了,但是这样的话,重载输出函数的属性究竟是类里public 的,还是protected,这样用的意思是什么?
2013-05-13 12:55
逆水寒刘
Rank: 3Rank: 3
等 级:论坛游侠
威 望:2
帖 子:76
专家分:117
注 册:2013-3-27
得分:0 
回复 5楼 apull
我用的是VC++6.0,看来是编译器的问题,不过还是谢谢了!
2013-05-13 12:56



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-406879-1-1.html




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

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