C++ 中的跨平台多线程?

发布于 2024-10-30 14:13:57 字数 136 浏览 3 评论 0原文

基本上,标题已经说明了一切;我想用 C++ 制作一个游戏,我想使用多线程来处理物理引擎等内容,并保持加载屏幕上的动画流畅。我见过一些多线程库,但我想知道哪个最适合我的应用程序,它可以在 Windows Mac 和 Linux 上运行良好。这样的图书馆存在吗?

Basically, the title explains it all; I'm looking to make a game in C++ and I want to use multithreading for stuff like the physics engine and keeping the animation smooth on the loading screen. I've seen a few multithreading libraries, but I'm wondering which is best for my application, which will work well on Windows Mac and Linux. Does such a library exist?

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

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

发布评论

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

评论(5

三生池水覆流年 2024-11-06 14:13:58

您可能需要 boost::thread 或英特尔的线程构建模块。我推荐 TBB,但我认为它不是免费的,所以 boost::thread 作为免费选项。

You probably want boost::thread or Intels' Thread Building Blocks. I'd recommend TBB but it's not free, I think, so boost::thread for the free option.

青瓷清茶倾城歌 2024-11-06 14:13:58

如果您可以使用 c++0x 线程 ,然后使用它。

如果没有,boost::thread 是最好的免费多平台库。

If you can use c++0x threads, then use that.

If not, boost::thread is the best free multi-platform library.

爱给你人给你 2024-11-06 14:13:58

我最喜欢的是 QThreadQt 库的一部分。

My favourite is QThread. Part of Qt library.

我很OK 2024-11-06 14:13:58

目前我的推荐是 OpenMP(g++ 上的 libgomp、IBM XlC++、MSVC++ 都支持它)

OpenMP 提供了一种利用并行性而不干扰算法设计的简单方法; OpenMP 程序可以在并行和串行执行环境中正确编译和运行。使用 OpenMP 基于指令的并行性还可以简化将现有串行代码转换为高效并行代码的操作。

请参阅 msdn
GOMP

作为起点

随机引用:

为了保持相关性,免费软件开发工具必须支持新兴技术。通过实施 OpenMP,GOMP 提供了简化的语法工具,用于创建针对并行架构的软件。 OpenMP 的平台中立语法与 GCC 和其他 GNU 项目的可移植性目标很好地契合

Currently my recommendation would be OpenMP (libgomp on g++, IBM XlC++, MSVC++ all support it)

OpenMP offers a simple way of exploiting parallelism without interfering with algorithm design; an OpenMP program compiles and operates correctly in both parallel and serial execution environments. Using OpenMP's directive-based parallelism also simplifies the act of converting existing serial code to efficient parallel code.

See msdn
And GOMP

for starting points

Random quote:

To remain relevant, free software development tools must support emerging technologies. By implementing OpenMP, GOMP provides a simplified syntax tools for creating software targeted at parallel architectures. OpenMP's platform-neutral syntax meshes well with the portability goals of GCC and other GNU projects

Bonjour°[大白 2024-11-06 14:13:58

另一个包含跨平台线程的不错的库是 poco

Another nice library that includes cross platform threads is poco

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