将 boost::mutex 与 MFC 线程(AfxBeginThread)一起使用吗?
当您不使用 boost::thread 而是通过 AfxBeginThread 使用 MFC 线程功能时,是否可以使用 boost::mutex 库来保护代码的关键部分?如果是的话,这样做有什么问题吗?
Can you use the boost::mutex libraries to protect a critical section of code when you are not using boost::thread but instead using the MFC threading capability via AfxBeginThread? If so, are there any problems with doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
(真实)线程是(真实)线程。
Boost 对直接(Windows API)或通过 Boost 创建线程这一事实没有做出特殊假设。
简短回答:
没问题。
A (real) thread is a (real) thread.
Boost makes no special assumptions about the fact that a thread has been created directly (Windows API) or via Boost.
Short answer:
No problem.
是的,你可以。没有问题,因为两者都在幕后使用 Win32 API。
Yes, you can. There is no problem since both are using the Win32 API behind the scenes.