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

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

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

15条回答
  •  醉酒成梦
    2021-02-06 11:37

    unfortunately there is no easy way. Couple of options: pthread on linux, win32 api threads on windows or boost::thread library

提交回复
热议问题