标题:求高手,tell以下程序运行结果。。。
取消只看楼主
山之子
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2010-10-31
结帖率:100%
已结贴  问题点数:20 回复次数:1 
求高手,tell以下程序运行结果。。。
#include<iostream.h>
#include<math.h>
class Point
{
public:
    Point(int xx=0,int yy=0){X=xx;Y=yy;cout<<"point 构造函数被调用"<<endl;}
    Point(Point &p);
    int GetX(){return X;}
    int GetY(){return Y;}
private:
    int X,Y;
};
Point::Point(Point &p)
{
    X=p.X;
    Y=p.Y;
    cout<<"X="<<X<<"Y="<<Y<<"Point 拷贝构造函数被调用"<<endl;
}
class Distance
{
public:
    Distance(Point xp1,Point xp2);
    double GetDis(){return dist;}
private:
    Point p1,p2;
    double dist;
};
Distance::Distance(Point xp1,Point xp2):p1(xp1),p2(xp2)
{
    cout<<"Distance 构造函数被调用"<<endl;
    double x=double(p1.GetX()-p2.GetX());
    double y=double(p1.GetY()-p2.GetY());
    dist=sqrt(x*x+y*y);
}
void main()
{
    Point myp1(1,1),myp2(4,5);
    Distance myd(myp1,myp2);
    cout<<"The distance is:";
    cout<<myd.GetDis()<<endl;
}
搜索更多相关主题的帖子: tell 结果 运行 
2010-11-04 12:49
山之子
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2010-10-31
得分:0 
回复 2楼 cnfarer
理解不了啊,能不能告诉我具体过程啊,谢谢。。。
2010-11-04 19:10



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




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

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