问题及代码
*ALL rights reserved.
*文件名称: 初学对象5
*作者:李长鸿
*完成时间:2015.4.8
*问题描述:常成员函数之平面坐标系类
*/
#include <iostream>
#include<cmath>
using namespace std;
class CPoint
{
private:
double x; // 横坐标
double y; // 纵坐标
public:
CPoint(double xx=0,double yy=0);
double Distance1(CPoint p) const; //两点之间的距离(一点是当前点——想到this了吗?,另一点为p)
double Distanceo() const; // 到原点(0,0)的距离
CPoint SymmetricAxis(char style) const;//style取'x','y'和'o'分别表示按x轴, y轴, 原点对称
void input(); //以x,y 形式输入坐标点
void output(); //以(x,y) 形式输出坐标点
};
CPoint::CPoint(double xx,double yy)
{
x=xx;
y=yy;
}
void CPoint::input()
{
char c;
cin>>x>>c>>y;
while(c!=',')
{
cout<<"输入有误,请重新输入: ";
cin>>x>>c>>y;
}
}
void CPoint::output()
{
cout<<'('<<x<<','<<y<<')'<<endl;
}
double CPoint::Distance1(CPoint p) const
{
return sqrt((x-p.x)*(x-p.x)+(y-p.y)*(y-p.y));
}
double CPoint::Distanceo() const
{
return sqrt(this->x*this->x+this->y*this->y);
}
CPoint CPoint::SymmetricAxis(char style) const
{
CPoint p(this->x,this->y);
if(style=='x')p.y=-y;
else if(style=='y')p.x=-x;
else
{
p.y=-y;
p.x=-x;
}
return p;
}
int main()
{
CPoint f,h;
double i,j;
cout<<"请输入第一个坐标点f点: ";
f.input();
cout<<"请输入第二个坐标点h点: ";
h.input();
cout<<"两点之间距离为: "<<h.Distance1(f)<<endl;
cout<<"f点距原点距离为: "<<f.Distanceo()<<endl;
cout<<"h点距原点距离为: "<<h.Distanceo()<<endl;
cout<<"f点关于x轴,y轴,原点对称的点分别为"<<endl;
(f.SymmetricAxis('x')).output();
(f.SymmetricAxis('y')).output();
(f.SymmetricAxis('o')).output();
cout<<"h点关于x轴,y轴,原点对称的点分别为"<<endl;
(h.SymmetricAxis('x')).output();
(h.SymmetricAxis('y')).output();
(h.SymmetricAxis('o')).output();
return 0;
}
总结:这个程序写的比较纠结, 参考了老师的好几个地方 ,但还是有点一头雾水的感觉。。。。。。回去好好理理。。。是不熟悉的问题吧??算了,还是承认自己笨吧
刚看到时,简直毫无头绪:这来怎么写??就先写了输入输出。想着先开个头,再慢慢找思路。
求两点距离时,想起老师视频中用的一个this指向当前对象,于是就用了 this->x-x*this->x-x 之类的,想用 this 来区分两点不同的 x , y 坐标,结果出来是 0。。。。。按着老师的改了,对了,就想是不是 this 指向的和没 this 指向的都是同一对象的数据?而且,私有成员不是不能被直接调用??没带耳机,回去看看视频。
后面又冒出了一个想法:
CPoint CPoint::SymmetricAxis(char style) const
{
CPoint p(this->x,this->y);
if(style=='x')p.CPoint(x,-y);
else if(style=='y')p.CPoint(-x,y);
else
{
p.CPoint(-x,-y);
}
return p;
}
结果:
F:\新建文件夹\12345\main.cpp|52| error: invalid use of 'CPoint::CPoint'|
F:\新建文件夹\12345\main.cpp|53| error: invalid use of 'CPoint::CPoint'|
F:\新建文件夹\12345\main.cpp|56| error: invalid use of 'CPoint::CPoint'|
。。。。。。