gpt4 book ai didi

c++ - 在意外的函数结束时清理,std 等效

转载 作者:行者123 更新时间:2023-11-30 03:30:13 25 4
gpt4 key购买 nike

我有一些函数需要使用成员变量(自定义类的 vector )。
在此功能结束时,需要清除此成员,但在此功能期间它需要保留为成员。另一个问题是,由于程序的自定义错误处理,函数可能会提前结束。但是成员仍然需要清除。

我首先使用 std::move 在局部变量的开头移动了这个成员。这工作得很好,但现在证明我需要该变量作为成员变量保留到该函数结束。

我想出了以下解决方案,使用 unique_ptr 和一个引用,该引用将在销毁时执行移动。

#include <iostream>
#include <vector>
#include <memory>
using namespace std;

template <class T>
class Clean
{
public:
Clean(T& clean)
: m_clean(clean) {}
~Clean()
{
T destroy = move(m_clean);
}
private:
T& m_clean;
};

class A
{
public:
A()
{
m_numbers = { { 3, 1 ,4, 1, 5} };
}

void display()
{
auto cleanNumbers = make_unique<Clean<vector<int> > >(m_numbers);
for(int number: m_numbers)
cout << number << endl;
}
private:
vector<int> m_numbers;
};

int main()
{
A a;
a.display();
cout << "should be empty now" << endl;
a.display();
return 0;
}

也欢迎任何更清洁的解决方案,但我的实际问题如下。
是否有任何与我使用的 Clean 类等效的标准?

Ps:代码片段使用 g++ 5.3.0 为我编译

g++ -std=c++14 -o main main.cpp

最佳答案

这是我感谢评论和其他问题的结果:

void display()
{
auto cleanNumber = [](decltype(m_numbers)* numbers){
if(numbers)
numbers->clear();
};
auto pClean = std::unique_ptr<decltype(m_numbers), decltype(cleanNumber)>(&m_numbers, cleanNumber);
for(int number: m_numbers)
cout << number << endl;
}

关于c++ - 在意外的函数结束时清理,std 等效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45162233/

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