本文主要是介绍第十一周项目一·项目二----定义点类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*
* 程序的版权和版本声明部分
* Copyright (c)2013, 烟台大学计算机学院学生
* All rightsreserved.
* 文件名称: object.cpp
* 作者:赵晓晨
* 完成日期: 2013年05月10日
* 版本号: 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){};
void PrintPoint();
double x,y;
};
void Point::PrintPoint(){
cout<<"Point:("<<x<<","<<y<<")";
}
class Line:public Point
{
public:
Line(Point pts,Point pte):pts(pts),pte(pte){};
double Length();
void PrintLine();
private:
class Point pts,pte;
};
//定义line类的成员函数
double Line::Length(){
return sqrt((pts.x-pte.x)*(pts.x-pte.x)+(pts.y-pte.y)*(pts.y-pte.y));
}
void Line::PrintLine(){
cout<<"point message:"<<(pts.x+pte.x)/2<<" "<<(pts.y+pts.y)/2<<endl;
}
//main函数进行测试
int main(){
Point ps(-2,5),pe(7,9);
Line l(ps,pe);
cout<<"\n The Length of Line";
cout<<l.Length()<<endl;
cout<<"\n The minddle point of Line";
l.PrintLine();
}
//定义line类的成员函数
#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(); //输出点的信息
private:
double x,y; //点的横坐标和纵坐标
};
void Point::PrintPoint()
{
cout<<"Point:("<<x<<","<<y<<")"; //输出点
}
class Line: public Point //利用坐标点类定义直线类, 其基类的数据成员表示直线的中点
{
public:
Line(Point pts, Point pte):pts(pts),pte(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<<"\n 2nd ";
pte.PrintPoint();
cout<<"\n The Length of Line: "<<Length()<<endl;
}
int main()
{
Point ps(-2,5),pe(7,9);
Line l(ps,pe);
l.PrintLine();//输出直线l的信息
cout<<"\n The middle point of Line: ";
l.PrintPoint() ;//输出直线l中点的信息
return 0;
}
结果:
体会:用初始化表对其进行初始化。
对line进行定义。
这篇关于第十一周项目一·项目二----定义点类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!