- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在从事一个项目,出于内部原因,该项目必须在单独的持久线程中具有加载部分和执行部分。
我制作了一个工具来处理执行线程和加载线程之间的加载请求。这个工具的基本逻辑就搞定了:
template <typename T>
class LoadingHandler {
public:
//std::mutex m_mutex;
LoadingHandler() : haveFinished(false) {
}
const T &getResult() const {
if(!this->haveFinished){
std::cout << "asking thread is going to sleep" << std::endl;
while(!this->haveFinished){
}
}
std::cout << "asking thread woke up" << std::endl;
return this->resultValue;
}
void setResult(const T &resultValue){
std::cout << "Loading thread have finished! " << std::endl;
this->resultValue = resultValue;
this->haveFinished = true;
std::cout << "handler result is : " << this->resultValue << std::endl;
}
private:
T resultValue;
bool haveFinished;
};
这个“工作”很好,但是,这个 while(!this->haveFinished) 丑得要命!
解决方案?也许是一些互斥量和条件变量!
问题来了,只要我向此类添加一个 std::mutex 成员(或在我的示例中取消注释该行),编译器就会告诉我各种我不明白的事情,这里是第一行:
g++ -std=c++11 -Wall -c -o build/main.o -L/usr/X11R6/lib sources/main.cpp -lglut -lGL -lGLU -lGLEW -lm -pthread -lglfw
In file included from /usr/include/c++/5/functional:55:0,
from /usr/include/c++/5/thread:39,
from sources/../headers/Tools/LoadingHandler.hpp:9,
from sources/main.cpp:6:
/usr/include/c++/5/tuple: In instantiation of ‘constexpr std::_Head_base<_Idx, _Head, false>::_Head_base(_UHead&&) [with _UHead = LoadingHandler<int>; long unsigned int _Idx = 0ul; _Head = LoadingHandler<int>]’:
/usr/include/c++/5/tuple:369:49: required from ‘constexpr std::_Tuple_impl<_Idx, _Head>::_Tuple_impl(std::_Tuple_impl<_Idx, _Head>&&) [with long unsigned int _Idx = 0ul; _Head = LoadingHandler<int>]’
/usr/include/c++/5/tuple:484:17: required from ‘std::_Bind<_Functor(_Bound_args ...)>::_Bind(std::_Bind<_Functor(_Bound_args ...)>&&) [with _Functor = void (*)(LoadingHandler<int>&); _Bound_args = {LoadingHandler<int>}]’
sources/main.cpp:36:84: required from here
/usr/include/c++/5/tuple:115:42: error: use of deleted function ‘LoadingHandler<int>::LoadingHandler(LoadingHandler<int>&&)’
: _M_head_impl(std::forward<_UHead>(__h)) { }
^
In file included from sources/main.cpp:6:0:
sources/../headers/Tools/LoadingHandler.hpp:15:7: note: ‘LoadingHandler<int>::LoadingHandler(LoadingHandler<int>&&)’ is implicitly deleted because the default definition would be ill-formed:
class LoadingHandler {
^
sources/../headers/Tools/LoadingHandler.hpp:15:7: error: use of deleted function ‘std::mutex::mutex(const std::mutex&)’
In file included from sources/../headers/Tools/LoadingHandler.hpp:11:0,
from sources/main.cpp:6:
/usr/include/c++/5/mutex:129:5: note: declared here
mutex(const mutex&) = delete;
^
In file included from /usr/include/c++/5/thread:39:0,
from sources/../headers/Tools/LoadingHandler.hpp:9,
from sources/main.cpp:6:
/usr/include/c++/5/functional: In instantiation of ‘std::_Bind<_Functor(_Bound_args ...)>::_Bind(std::_Bind<_Functor(_Bound_args ...)>&&) [with _Functor = void (*)(LoadingHandler<int>&); _Bound_args = {LoadingHandler<int>}]’:
sources/main.cpp:36:84: required from here
/usr/include/c++/5/functional:1120:78: note: synthesized method ‘constexpr std::tuple< <template-parameter-1-1> >::tuple(std::tuple< <template-parameter-1-1> >&&) [with _Elements = {LoadingHandler<int>}]’ first required here
: _M_f(std::move(__b._M_f)), _M_bound_args(std::move(__b._M_bound_args))
我知道这方面的信息相对较少,但请随时问我任何问题,如果没有必要,我不想发表需要花费数小时才能阅读的帖子。
感谢您的帮助!
最佳答案
std::mutex
不可移动(或复制),因此如果要移动或复制包含 std::mutex
成员的类,您必须提供您自己的移动/复制构造函数和移动/复制赋值运算符。
关于c++ - 导致编译错误的模板化类成员互斥锁c++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48489223/
我只是有一个关于 Java 并发编程的简单问题。例如,我有一个 NxN 矩阵,矩阵的每一行都有一个对应的线程,如果每一行中的线程之间没有交互,如果多个线程同时访问和修改矩阵的单独行是否安全(或正确)?
jwplayer("myElement_0").onPlay(function(){ pausePlayers(1); alert('0 has started'); }); jwplayer("my
我在想。当我使用一个std::mutex _lock 并想依赖守卫来释放它时,我可以这样使用吗? class MyClass{ private: mutable std::mutex _loc
这种互斥模式是否像我认为的那样安全?如果是这样,你怎么调用它? lock (_lock) { if (_flag) return; else _flag = true; } try {
我有一个静态库 来访问数据库。它有一个函数 readMaximum()。 readMaximum() 从数据库中读取最大值。此函数是线程安全的(使用互斥量)。 但问题是: 有两个进程A.exe和B.e
我正在为互斥锁的逻辑而苦苦挣扎;我在这里检查 key 是否被拿走,如果没有,我们拿走它,完成后释放它;但是你能帮我看看我怎样才能有一个循环来检查 key 直到它可用吗? rdb.setnx(lockk
我正在使用 clp(fd) 编写 Prolog 程序并且我很难实现我想要的约束之一。 输出是一个整数列表(长度取决于程序另一部分的输入),其中有某些相互排斥的预定义数字对,每对中的一个数字必须在输出中
我正在尝试使用 mesos/marathon 实现一个 lizardfs 集群。为此,我创建了一些 docker 镜像。 我需要获取某种类型的 docker 容器(lizardfs-master),而
假设我有一个包含以下列的 MySQL 表: |variables|1. | 'a' |2. | 'a b' |3. | 'a b c' |4. | ... | How can
我在一个表单上有 7 个单选按钮 其中3个属于一个组,4个属于另一个组 我希望 RadioButtons 在组内互斥。 这可以通过将它们放在两个 GroupBox 中来实现, 有没有什么办法可以不把它
我正在尝试使文本输入和复选框相互排斥。 默认情况下,文本框应包含“0”,复选框应为 false。如果用户选中该复选框,则该文本框应被清空。如果用户在文本框中输入值,则应取消选中该复选框。任何时候都不应
我已经在代码的注释中写下了我的问题。 我正在尝试使用 pthreads 使我的代码并行。首先,我想通过多个线程并行地在内存中写入大量数据。写入数据后,我想通过相同的线程执行此数据。执行数据后,我想读取
这个问题在这里已经有了答案: 关闭 13 年前。 Possible Duplicate: Monitor vs Mutex in c# 你好, 在这个网站上,我发现来自不同人的不同答案令人困惑。仍然
我需要调用一个返回唯一 id 的函数, int getid() { static id=0; id++; return id; } 多个线程需要调用这个函数,我的问题是我不确定我需要在哪里锁定互斥量,
请引用来自 WWDC 的视频 https://developer.apple.com/videos/play/wwdc2015/226/演讲者展示了我们可以在两个相同类型的 NSopeation 实例
概述: 我有一个使用 CoreData 的 iOS 应用程序> 有一个名为Animal的实体 它有一组记录Lion、Tiger和Elephant 我想将只有一个记录标记为收藏。 具有相同方法的相似实体
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicate: DLL thread safety 你好 我正在 MS VS C++ express 中编写一个 DLL 文
我的应用程序被迫使用第 3 方模块,如果在同一台机器上同时启动两个实例,该模块将使 Windows 蓝屏。为了解决这个问题,我的 C# 应用程序有一个互斥量: static Mutex mutex =
我是 Go 的新手,我想实现一个自定义的互斥机制,每个应用程序用户一次可以执行一个 goroutine。为简化起见,将 U1 和 U2 视为应用程序用户以及 F1(userId)、F2(userId)
我需要将单选和多选的功能组合到一个控件中。具体来说,我有多种选择。第一个与其他的互斥。所以,如果我选择第一个,就需要取消选中所有其他的。如果选择了其中一个,则必须取消选中第一个(如果已选择)。其他选项
我是一名优秀的程序员,十分优秀!