鱼C论坛

 找回密码
 立即注册
查看: 4095|回复: 1

友元声明无效。。

[复制链接]
发表于 2015-6-3 16:14:44 | 显示全部楼层 |阅读模式

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

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

x
<span style="background-color: rgb(255, 255, 255);">运行下列代码时,提示友元声明无效,请问是为什么。。?</span>
[img]file:///C:\Users\lenovo\Documents\Tencent Files\346411967\Image\C2C\6DS9EY3VARSVYAW@3[_0F_1.jpg[/img]

友元声明无效

友元声明无效
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2015-6-3 16:21:07 | 显示全部楼层
// Class.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
using namespace std;


class Point
{
public:
        Point(float x=0,float y=0);
        void setPoint(float,float);
        float getX(){return x;}
        float getY(){return y;}
        friend ostream & operater << (ostream &,const Point &);
protected:
        float x,y;
};

Point::Point(float a, float b)
{
x=a;y=b;
}

void Point::setPoint(float a,float b)
{
x=a;y=b;
}

ostream &operater<<(ostream & output,Point &p) 
{
        output<<"["<<p.x<<","<<p.y<<"]";
        return output;
}


int main()
{
        Point p(4.3,5.2);
        cout<<"x="<<p.getX()<<"y="<<p.getY()<<endl;
        p.setPoint(5.6,7.6);
        cout<<"p(new)"<<p<<endl;
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-26 01:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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