gpt4 book ai didi

c++ - 如何正确离开临界区?

转载 作者:可可西里 更新时间:2023-11-01 12:44:32 27 4
gpt4 key购买 nike

我有以下 C++ 代码,其中我使用了 Critical Section object :

EnterCriticalSection(&cs);

// code that may throw an exception

LeaveCriticalSection(&cs);

如何确保 LeaveCriticalSection 函数在抛出异常时仍被调用?

最佳答案

只需编写一个利用析构函数进行清理的守卫:

struct Guard {
CriticalSection& cs;
Guard(CriticalSection& cs)
: cs(cs)
{
EnterCriticalSection(cs);
}
~Guard() {
LeaveCriticalSection(cs);
}
Guard(const Guard&) = delete;
Guard& operator = (const Guard&) = delete;
};

用法:

void f() {
Guard guard(cs);
...
}

关于c++ - 如何正确离开临界区?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29984941/

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