将 boost::mutex 与 MFC 线程(AfxBeginThread)一起使用吗?

发布于 2024-12-11 10:56:26 字数 108 浏览 0 评论 0原文

当您不使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我早已燃尽 2024-12-18 10:56:26

(真实)线程是(真实)线程。

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.

2024-12-18 10:56:26

是的,你可以。没有问题,因为两者都在幕后使用 Win32 API。

Yes, you can. There is no problem since both are using the Win32 API behind the scenes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文