永发信息网

请帮忙修改一道C++代码:题目要求是构造一个类函数,main函数和输出结果都已经给出,只是希望把类补充上

答案:2  悬赏:10  手机版
解决时间 2021-01-04 11:29
  • 提问者网友:佞臣
  • 2021-01-04 03:31
完整代码如下:
#include
#include
#include
using namespace std;
class Point
{
public:
double x,y;
Point(double x,double y)
{
this->x = x;
this->y = y;
cout<<"constructor begin!"< }
~Point()
{
cout<<"destructor begin!"< }
void show()
{
cout< }
double dist(Point p)
{
cout< return sqrt((p.x-x)*(p.x-x)+(p.y-y)*(p.y-y));
}
};
int main()
{
Point p1(2.178, 2.0);
Point p2(3.0, 3.0);
Point p3(6.0, 7.0);
p1.show();
p2.show();
p3.show();
cout << p2.dist(p3) << endl; //两点距离
return 0;
}
题目要求输出如下:constructor begin!constructor begin!constructor begin!Point(2.18,2.00)Point(3.00,3.00)Point(6.00,7.00)5.00destructor begin!destructor begin!destructor begin!我这个代码会输出四个“destructor begin!”,不太懂析构,求修改!谢谢
最佳答案
  • 五星知识达人网友:低血压的长颈鹿
  • 2021-01-10 05:48
这个地方改成
double dist(Point &p)
{
cout< return sqrt((p.x-x)*(p.x-x)+(p.y-y)*(p.y-y));
}

&是引用指的是本身,如果不用引用就会生成一个拷贝给局部域用,相当于创建了一个新的对象,局部域结束后就会释放,当然会多一次析构了。

局部传参尽量都用引用或指针,效率高也不容易出问题。
全部回答
  • 1楼网友:詩光轨車
  • 2021-01-10 06:54
至于small的问题,是因为void showsmall() { cout<<"small="< -->
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯