gpt4 book ai didi

c++ - 使用宏创建自定义 block 类型

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

在 avr-gcc 中你可以这样:

ATOMIC_CODE{
cout << "Here I can do stuff that is very time sensitive\n";
}

不幸的是,这是一个使用特殊 gcc 属性 的#define,我想避免这种情况。

所以解决方法是这样的:

void enableInterrupts(){ std::cout << "Interupts Enabled\n"; }
void disableInterrupts() { std::cout << "Interupts Disabled\n"; }
class Scoped{
void (*cleanup)();
bool incremented;
public:
Scoped(void (*clean)(),void (*before)()) : cleanup(clean),incremented(false){
before();
}
~Scoped(){
cleanup();
}
void operator ++(){
incremented = true;
}
bool operator!(){
return !incremented;
}

};
#define ATOMIC for (Scoped x(&enableInterrupts,&disableInterrupts); !x; ++x)

//Later in main.cpp
ATOMIC{
/*do stuff*/
std::cout << "This is atomic code\n";
}

唯一的问题是它依赖于立即调用析构函数(我不确定这是一种可靠的方法)。

那么是否保证析构函数会立即被调用,或者编译器是否可以在需要时析构对象?

最佳答案

是的,保证立即调用析构函数。

https://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization

您正在考虑执行惰性标记和清扫垃圾收集的语言。 (好吧,也许你不是)

关于c++ - 使用宏创建自定义 block 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36670974/

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