面试:_beginthread(ex)创建的pthread和windows线程有什么区别?

发布于 2024-10-23 18:32:47 字数 37 浏览 1 评论 0原文

我在 C++ 开发人员职位面试中被问到这个问题,答案是什么?

I was asked about this in an c++ developer position interview, what is the answer to this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

謸气贵蔟 2024-10-30 18:32:47

我会说:

如果我想创建一个可移植的跨平台
C++ 二进制文件,我会使用 pthreads 并使用
pthread 实现
视窗。如果我想创建一个
我会使用特定于 Windows 的 C++ 二进制文件
开始线程并避免第三者
对 pthread 库的依赖。

如果他们真的想了解描述两者之间差异的复杂内部细节,那么你应该三思而后行。除非是逆向工程工作。

I would have said:

If I wanted to create a portable cross-platform
C++ binary, I'd use pthreads and use
the pthread implementation for
windows. If I wanted to create a
windows-specific C++ binary, I'd use
beginthread and avoid the 3rd party
dependency on the pthread library.

If they really wanted to know the intricate internal details describing the differences between the two, you should think twice about working there. Unless it was for a reverse engineering job.

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