What is easiest way to create multithreaded applications with C/C++?

前端 未结 15 1560
遥遥无期
遥遥无期 2021-02-06 11:05

What is the easiest way to create multithreaded applications with C/C++?

15条回答
  •  无人及你
    2021-02-06 11:18

    Besides the ones already mentioned, ACE is another popular and widely deployed C++ framework that provides thread encapsulations across multiple platforms. It's style of C++ isn't as modern as Boost.Thread, for example, but it is quite mature.

提交回复
热议问题