有关于C++的一个小问题 你一定会!
首先我定义了一个点的类由于横纵坐标为private所以在pubic中有两个函数取出横纵坐floatGetX(){returnx;}floatGetY(){returny;...
首先我定义了一个点的类 由于横纵坐标为private 所以在pubic中有两个函数取出横纵坐
float GetX(){return x;}
float GetY(){return y;}
另外 点的构造函数为:
point::point(float x,float y)//构造函数实现
{
this->x=x;
this->y=y;
}
然后我又定义了一个矩形的类 其私有成分包含两个点 那么我将矩形的构造函数写为
rectangle::rectangle(point point1,point point2)
{
left(point1.GetX(),point1.GetY());
right(point2.GetX(),point2.GetY());
}
结果报错:no match for call to" point(float,float)" 是说点的横纵坐标的数据类型不匹配是吧? 但是我的两个Get函数的返回类型明明是float类型啊 不知道到底错在哪里 我又复制构造函数去实现还是这个问题?好纠结 展开
float GetX(){return x;}
float GetY(){return y;}
另外 点的构造函数为:
point::point(float x,float y)//构造函数实现
{
this->x=x;
this->y=y;
}
然后我又定义了一个矩形的类 其私有成分包含两个点 那么我将矩形的构造函数写为
rectangle::rectangle(point point1,point point2)
{
left(point1.GetX(),point1.GetY());
right(point2.GetX(),point2.GetY());
}
结果报错:no match for call to" point(float,float)" 是说点的横纵坐标的数据类型不匹配是吧? 但是我的两个Get函数的返回类型明明是float类型啊 不知道到底错在哪里 我又复制构造函数去实现还是这个问题?好纠结 展开
3个回答
展开全部
left = point(point1.GetX(),point1.GetY());
right = point(point2.GetX(),point2.GetY());
不知道你的平台,=运算是否需要定义。
对成员变量,不能用你的办法赋值。这是语法规定。
局部变量可以,
point temp(point1.GetX(),point1.GetY());
另外,你这样不累吗?我会这样写。(重载等号)
point & point::operator=(const point & src)
{
if (this==&src) return *this;
this->x = src->x;
this->y = src->y;
return *this;
}
class rectangle
{
private:
point left_top;
point right_bottom;
}
rectangle::rectangle(point point1,point point2)
{
left_top = point1;
right_bottom = point2;
}
right = point(point2.GetX(),point2.GetY());
不知道你的平台,=运算是否需要定义。
对成员变量,不能用你的办法赋值。这是语法规定。
局部变量可以,
point temp(point1.GetX(),point1.GetY());
另外,你这样不累吗?我会这样写。(重载等号)
point & point::operator=(const point & src)
{
if (this==&src) return *this;
this->x = src->x;
this->y = src->y;
return *this;
}
class rectangle
{
private:
point left_top;
point right_bottom;
}
rectangle::rectangle(point point1,point point2)
{
left_top = point1;
right_bottom = point2;
}
展开全部
left
right
是什么?
如果这两个是成员,那么你的赋值形式就出问题了. 在初始化成员列表里面才能这么写:
rectangle::rectangle(point point1,point point2)
:left(point1) //编译器会生成默认复制构造函数
,right(point2)
{
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
point的构造函数是否为私有?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询