鱼C论坛

 找回密码
 立即注册
查看: 2228|回复: 0

[迷途问路] c++ 友元类参数问题

[复制链接]
发表于 2015-11-1 12:00:34 | 显示全部楼层 |阅读模式

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

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

x
#include<iostream>
#include<cmath>
using namespace std;

class Point
{
public:
        Point (int x=0,int y=0):x(x),y(y){cout<<"构造函数被调用"<<endl;}
        Point (Point &p){cout<<"复制构造函数被调用"<<endl;x=p.x;y=p.y;}
    friend double dist(Point &p1,Point &p2);
private:
        int x,y;
};

double dist(Point &p1,Point &p2)
{
        double x=p2.x-p1.x;
        double y=p2.y-p1.y;
        return sqrt(x*x+y*y);
}
int main()
{
        Point mp1(1,1),mp2(4,5);
        cout<<"len="<<dist(mp1,mp2)<<endl;
        return 0;
}

为什么把dist的参数前面的地址符去掉结果变了
求大神指点
#include<iostream>
#include<cmath>
using namespace std;

class Point
{
public:
        Point (int x=0,int y=0):x(x),y(y){cout<<"构造函数被调用"<<endl;}
        Point (Point &p){cout<<"复制构造函数被调用"<<endl;x=p.x;y=p.y;}
    friend double dist(Point p1,Point p2);
private:
        int x,y;
};

double dist(Point p1,Point p2)
{
        double x=p2.x-p1.x;
        double y=p2.y-p1.y;
        return sqrt(x*x+y*y);
}
int main()
{
        Point mp1(1,1),mp2(4,5);
        cout<<"len="<<dist(mp1,mp2)<<endl;
        return 0;
}
(P5]RKVPF680LQB%FNY)%MB.png
为什么把dist的参数前面的地址符去掉结果变了
求大神指点
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-23 02:35

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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