对于某些并发编程,我可以使用Java的CountDownLatch概念。 C++ 11是否具有等效功能?或者在C++中将这个概念称为什么?
我想要的是一旦计数达到零就调用一个函数。
如果还没有,我会写一个像下面这样的类:
class countdown_function {
public:
countdown_function( size_t count );
countdown_function( const countdown_function& ) = default;
countdown_function( countdown_function&& ) = default;
countdown_function& operator=( const countdown_function& ) = default;
countdown_function& operator=( countdown_function&& ) = default;
// Callback to be invoked
countdown_function& operator=(std::function<void()> callback);
countdown_function& operator--();
private:
struct internal {
std::function<void()> _callback;
size_t _count;
// + some concurrent handling
};
// Make sure this class can be copied but still references
// same state
std::shared_ptr<internal> _state;
};
在任何地方都已经有类似的东西吗?
场景是:
countdown_function counter( 2 );
counter = [success_callback]() {
success_callback();
};
startTask1Async( [counter, somework]() {
somework();
--counter;
}, errorCallback );
startTask2Async( [counter, otherwork]() {
otherwork();
--counter;
}, errorCallback );
最佳答案
对于下一个C++标准,有一个proposal对此进行了介绍。可以将实现作为google concurrency library的一部分使用。
关于java - CountDownLatch等效,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15717289/