第11周項目4-點類派生直線類

/*。
*Copyright(c)2014,煙臺大學計算機學院
*All right reserved,
*文件名:test.cpp
*作者:畢玉堂
*完成日期:2015年5月24日
*版本號:v1.0
*
問題描述:
*輸入描述:
*程序輸出:
*/
#include<iostream>
#include<Cmath>
using namespace std;
class Point //定義座標點類
{
public:
    Point():x(0),y(0) {};
    Point(double x0, double y0):x(x0), y(y0) {};
    double getX()
    {
        return x;
    }
    double getY()
    {
        return y;
    }
    void PrintPoint(); //輸出點的信息
protected:
    double x,y;   //點的橫座標和縱座標
};
void Point::PrintPoint()
{
    cout<<"Point:("<<x<<","<<y<<")";    //輸出點
}

class Line: public Point   //利用座標點類定義直線類, 其基類的數據成員表示直線的中點
{
public:
    Line(Point pts, Point pte);  //構造函數,用初始化直線的兩個端點及由基類數據成員描述的中點
    double Length();    //計算並返回直線的長度
    void PrintLine();   //輸出直線的兩個端點和直線長度
private:
    class Point pts,pte;   //直線的兩個端點
};
//構造函數,分別用初始化直線的兩個端點及由基類數據成員(屬性)描述的中點
Line::Line(Point pt1, Point pt2):Point((pt1.getX()+pt2.getX())/2,(pt1.getY()+pt2.getY())/2)
{
    pts=pt1;
    pte=pt2;
}
double Line::Length()  //計算並返回直線的長度
{
    double dx = pts.getX() - pte.getX();
    double dy =pts.getY() - pte.getY();
    return sqrt(dx*dx+dy*dy);
}
void Line::PrintLine()
{
    cout<<" 1st ";
    pts.PrintPoint();
    cout<<endl;
    cout<<" 2nd ";
    pte.PrintPoint();
    cout<<endl;
    cout<<" The Length of Line: "<<Length()<<endl;
}
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;
}

運行結果:


發佈了179 篇原創文章 · 獲贊 0 · 訪問量 6萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章