c – 如何将std :: string放入boost :: lockfree :: queue(或替代)?
作者:互联网
我正在尝试将std :: strings放入boost :: lockfree :: queues,以便我的线程可以使用新数据互相更新.
当我尝试使用boost :: lockfree :: queue< std :: string> updated_data;,g说:
In instantiation of ‘class boost::lockfree::queue >’:
error: static assertion failed: (boost::has_trivial_destructor::value)
error: static assertion failed: (boost::has_trivial_assign::value)
我已经shown generally what these errors mean了,但我自己没有希望自己解决这个问题,因为我几乎是c的新手.
是否有另一种方法可以在具有lockfree的线程之间传递文本数据?如果没有,请告诉我如何将std :: string放入boost :: lockfree :: queue.
解决方法:
如果将原始指针放入队列中,旧的std :: strings将被泄露,因为当不再需要它们时无法释放它们.这是因为在没有锁定的情况下无法以线程安全的方式释放对象(除了危险指针之类的一些技巧,其中boost :: lockfree :: queue不使用)
由于技术原因我真的不明白,boost :: lockfree :: queue需要一个简单的赋值运算符和一个简单的析构函数,这意味着你的对象不能包含任何必须在其析构函数中释放内存的数据类型,如std: :串.
标签:lock-free,c,boost,stdstring,queue 来源: https://codeday.me/bug/20191002/1843264.html