Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个多线程套接字库(与平台无关)。目前我正在使用 WINAPI 在 Windows 上开发它来创建线程,尽管我需要将库移植到 Linux。
如果您的程序需要在 Linux 和 win32 上编译,我不会将代码移植到 pthreads 或一些 Win32 线程包装器。
我会使用 std::thread
std::thread th ( my_func, arg1, arg2...);