在 Turbo C++ 中实现线程
如何在Turbo C++中实现线程?
How to Implement Thread in Turbo C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在Turbo C++中实现线程?
How to Implement Thread in Turbo C++?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
取决于 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.)