gpt4 book ai didi

c++ - 为什么在Friend函数中调用析构函数

转载 作者:行者123 更新时间:2023-12-02 09:49:36 24 4
gpt4 key购买 nike

为什么在此Friend函数 show() C++中调用析构函数?
另外,应该如何初始化字符指针,将其设置为0 ...
带有main的完整代码在这里https://justpaste.it/5x7fy

#include<iostream>
using namespace std;
#include<string.h>

class String
{

public:
char *p;
int len;
String()
{
cout << "empty constructor" << endl;
len=0;
p=0;
}
// constructor
String(const char *s) {
len=strlen(s);
p=new char[len+1];
strcpy(p,s);
}

friend String operator+(const String&s, const String&t);
friend int operator<=(const String&s, const String&t);
friend void show(const String s);

~String() {delete p;}
};

void show(const String s)
{
cout<<s.p<<endl;
}

编辑,阅读副本构造函数,并添加为:
// copy constructor
String(const String &s)
{
len=s.len;
p=new char[len+1]; // s.p;//
strcpy(p,s.p);
}

friend 函数参数之前通过值传递,并且变量离开了show函数作用域,因此调用了析构函数,现在通过引用传递了它。
    friend void show(const String & s);
...
void show(String & s)
{
cout<<s.p<<endl;
}

编辑更新了空构造函数中字符指针的初始化。
String() {
p = new char[1]{'\0'};
len = 1;
};

[最新消息]:https://www.mediafire.com/file/31gb64j7h77x5bn/class38working.cc/file

最佳答案

之所以调用析构函数,是因为s按值传递。也就是说,当您调用show(something)时,会将某些内容复制到s中,然后在show的执行结束时销毁。

关于c++ - 为什么在Friend函数中调用析构函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61295123/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com