使用cygwin在windows中创建新线程
我正在使用netbeans。我安装了 cygwin 并使用它在 netbeans 中进行 c++ 编程。我想创建一个线程。我搜索了很多网站。但我找不到任何适合我的条件的东西(C++ 和 windows(作为操作系统)而不是 Visual C++)。
I am using netbeans. I installed cygwin and use it for c++ programming in netbeans. I want to create a thread. I searched lots of sites. But I couldn't find anything suitable for my condition(C++ and windows(as OS) and not visual C++).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Cygwin 实现了 POSIX 线程 API,又名 pthreads。
Cygwin implements the POSIX Threads API, aka pthreads.
您有多个选项:
顺便说一下,Visual C++ 只是一个 IDE。它与线程无关。
You have multiple options:
By the way, Visual C++ is just an IDE. It has nothing to do with threads.