码迷,mamicode.com
首页 > 其他好文 > 详细

第十一周 项目3 - 点类派生直线类】定义点类Point,并以点类为基类,继承关系

时间:2015-06-01 09:44:42      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:class   iostream   

项目3 - 点类派生直线类】定义点类Point,并以点类为基类,派生出直线类Line,从基类中继承的点的信息表示直线的中点。请阅读下面的代码,并将缺少的部分写出来。

  1. #include<iostream>  
  2. #include<Cmath>  
  3. using namespace std;  
  4. class Point //定义坐标点类  
  5. {  
  6. public:  
  7.     Point():x(0),y(0) {};  
  8.     Point(double x0, double y0):x(x0), y(y0) {};  
  9.     void PrintPoint(); //输出点的信息  
  10. protected:  
  11.     double x,y;   //点的横坐标和纵坐标  
  12. };  
  13. void Point::PrintPoint()  
  14. {  
  15.     cout<<"Point: ("<<x<<","<<y<<")";    //输出点  
  16. }  
  17. class Line: public Point   //利用坐标点类定义直线类, 其基类的数据成员表示直线的中点  
  18. {  
  19. public:  
  20.     Line(Point pts, Point pte); //构造函数,用初始化直线的两个端点及由基类数据成员描述的中点  
  21.     double Length();    //计算并返回直线的长度  
  22.     void PrintLine();   //输出直线的两个端点和直线长度  
  23. private:  
  24.     class Point pts,pte;   //直线的两个端点,从Point类继承的数据成员表示直线的中点  
  25. };  
  26.   
  27. int main()  
  28. {  
  29.     Point ps(-2,5),pe(7,9);  
  30.     Line l(ps,pe);  
  31.     cout<<"About the Line: "<<endl;  
  32.     l.PrintLine();  //输出直线l的信息:两端点及长度  
  33.     cout<<"The middle point of Line is: ";  
  34.     l.PrintPoint(); //输出直线l中点的信息  
  35.     return 0;  
  36. }  

程序运行代码:

/*
*Copyright (c)2014,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:d.cpp
*作    者:张旺华
*完成日期:2015年5月31日
*版 本 号:v1.0
*/

#include <iostream>
#include<iomanip>
#include<cstring>
#include <cmath>
using namespace std;

class Point
{
public:
    Point(double x=0,double y=0):X(x),Y(y) {}
    void printPoint();
    double getX();
    double getY();
protected:
    double X,Y;
};

void Point::printPoint()
{
    cout<<"("<<X<<","<<Y<<")"<<endl;
}

double Point::getX()
{
    return X;
}

double Point::getY()
{
    return Y;
}
class Line :public Point
{
public:
    Line(Point P1=(0,0), Point P2=(0,0)):p1(P1),p2(P2), p((P1.getX()+P2.getX())/2,(P1.getY()+P2.getY())/2) {};
    double Length();   //求线段长度
    void printLine();  //输出线段起始点、终止点,长度
   void  printPoint(); //输出线段中点坐标
private:
    Point p1,p2,p;
};
void Line::printPoint()   
{
    cout<<"("<<p.getX()<<","<<p.getY()<<")"<<endl;
}

void Line::printLine()
{
    cout<<" 1st "<<endl;
    p1.printPoint();
    cout<<" 2nd "<<endl;
    p2.printPoint();
    cout<<" The Length of Line: "<<Length()<<endl;
}
double Line::Length()
{
    double dx = p1.getX() - p2.getX();
    double dy =p1.getY() - p2.getY();
    return sqrt(dx*dx+dy*dy);
}
int main()
{
    Point ps(-2,5),pe(7,9);
    Line l(ps,pe);
    cout<<"About the Line: "<<endl;
    l.printLine();  //输出直线l的信息
    cout<<"The middle point of Line is: ";
    l.printPoint(); //输出直线l中点的信息
    return 0;
}

运行结果:

技术分享

知识点运用及学习心得:

考察构造函数,继承的理解。

第十一周 项目3 - 点类派生直线类】定义点类Point,并以点类为基类,继承关系

标签:class   iostream   

原文地址:http://blog.csdn.net/wh201458501106/article/details/46293323

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!