标题:此题错在哪里?
取消只看楼主
louchenggang
Rank: 1
等 级:新手上路
帖 子:5
专家分:3
注 册:2017-9-27
结帖率:25%
已结贴  问题点数:5 回复次数:0 
此题错在哪里?
#include <iostream>
using namespace std;
class Point {
    private:
        int x;
        int y;
    public:
        Point() { };
、/*friend ostream & operator << (ostream & o,const Point & s);
    friend istream & operator >> (istream & is,const Point & s);
     
    ostream & operator <<(ostream & o,const Point & s)
    {
         o<<s.x<<s.y;
        return o;
    }
     
    istream & operator >> (istream & is,const Point & s)
    {
         is >>s.x>>s.y;
        return is;
    }
    注释部分是我修改部分,您看错在哪里?
     */
};
int main()
{
     Point p;
     while(cin >> p) {
         cout << p << endl;
    }
    return 0;
}
错误提示说 ostream & operator <<(ostream & o,const Point & s)只能有一个参数?
搜索更多相关主题的帖子: Point int operator const return 
2017-10-04 15:14



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




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

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