#include <vector>
#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <memory>
using std::cin;
using std::cout;
using std::endl;
using std::string;
using std::vector;
using std::shared_ptr;
class TreeNode {
public:
TreeNode() :count(0), left(nullptr), right(nullptr), num(new std::size_t(1)) {}
TreeNode(const string& str, int c) :value(str),count(c), left(nullptr), right(nullptr), num(new std::size_t(1)) {}
TreeNode(const string& str, int c, TreeNode& lnode, TreeNode& rnode) :value(str), count(c), left(&lnode), right(&rnode), num(new std::size_t(1)) {}
TreeNode(const TreeNode& tn) :value(tn.value), count(tn.count), left(tn.left), right(tn.right) { ++* num; }
~TreeNode() {
if (-- * num == 0) {
delete left;
delete right;
delete num;
}
}
TreeNode& operator=(const TreeNode& tn) {
++* tn.num;
if (-- * num == 0) {
delete left;
delete right;
delete num;
}
value = tn.value;
count = tn.count;
left = tn.left;
right = tn.right;
return *this;
}
private:
string value;
int count;
TreeNode* left;
TreeNode* right;
//模拟引用计数,*num为0则销毁对象
std::size_t* num;
};
void testTreeNode() {
TreeNode tn2("World", 1025), tn3("!",1026);
TreeNode tn1("Hello", 1024, tn2, tn3);
//tn1 = tn3;
}
int main(){
testTreeNode();
cout << "end...\n";
return 0;
}
【C++】TreeNode 类的析构函数有问题,tn1的析构报错,不知怎么修改,求告知[大哭]
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
- 快乐鹦鹉 2021-09-08 13:12关注
晕,刚才回答完,发现你删除了
tn2,tn3先析构掉了,相当于tn1的left和right被析构掉了,然后tn1的析构的时候你再析构left和right就会报错啊
原因你只是进行指针的赋值,没有进行深拷贝
在构造函数中,left和right 创建新对象,然后将tn2和tn3的值赋值给left和right新建对象的值,这样就互不相关了本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 海康威视如何实现客户端软件对设备语音请求的处理。
- ¥15 支付宝h5参数如何实现跳转
- ¥15 MATLAB代码补全插值
- ¥15 Typegoose 中如何使用 arrayFilters 筛选并更新深度嵌套的子文档数组信息
- ¥15 前后端分离的学习疑问?
- ¥15 stata实证代码答疑
- ¥50 husky+jaco2实现在gazebo与rviz中联合仿真
- ¥15 dpabi预处理报错:Error using y_ExtractROISignal (line 251)
- ¥15 在虚拟机中配置flume,无法将slave1节点的文件采集到master节点中
- ¥15 husky+kinova jaco2 仿真