在 Turbo C++ 中实现线程

发布于 2024-09-04 09:54:51 字数 25 浏览 7 评论 0原文

如何在Turbo C++中实现线程?

How to Implement Thread in Turbo C++?

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

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

发布评论

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

评论(1

那些过往 2024-09-11 09:54:51

取决于 Turbo C++ 的版本。 DOS 没有线程,Turbo C++ 3.0 版本严格用于 DOS。 Turbo C++ 3.0及更高版本支持Windows开发,但仅支持Win16 API,因此该程序无法在64位版本的Windows上运行。

如果您确实想在 DOS 中创建“线程”,您可以使用 TSR 例程在 DOS 下,尽管它们在 Windows 下工作得相当糟糕。

(Borland C++ 的更高版本支持现代版本的 Windows。)

Depends on which version of Turbo C++. DOS has no threads, and versions up Turbo C++ 3.0 were strictly for DOS. Turbo C++ versions 3.0 and up have support for Windows development, but only the Win16 API, so the program won't work on 64-bit versions of Windows.

If you really want to create a "thread" in DOS, you can use a TSR routine in DOS, though those work pretty bad under Windows.

(Higher versions of Borland C++ support modern versions of Windows.)

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