在 Visual Studio 2019 中配置 pthread 库的多线程支持,可以按照以下步骤进行:
- 下载 pthread 库。可以从
https://sourceforge.net/projects/pthreads4w/files/pthreads-w32/
下载最新版本的 pthread 库。
百度网盘获取:链接:https://pan.baidu.com/s/13ZSPfFEQyd73TZNivaeUIA?pwd=li3y
提取码:li3y
- 将下载好的 pthread库解压到一个路径下,例如
C:\pthread
。 - 在 Visual Studio 2019 中创建一个新的控制台应用程序项目。
- 点击“项目”菜单,选择“属性”。
- 在属性页中,选择“VC++目录”选项卡,在“包含目录”中添加 pthread.h 的所在目录,例如
C:\pthread\Pre-built.2\include
。 - 在“库目录”中添加 pthread 库的
lib
文件所在目录,例如C:\pthread\Pre-built.2\lib\x64
和C:\pthread\Pre-built.2\lib\x86
。 - 在“链接器”选项卡中,选择“输入”选项卡,在“附加依赖项”中加入
pthreadVC2.lib
和pthreadVCE2.lib
。 - 在代码中添加头文件
#include <pthread.h>
。
编写多线程代码,例如:
#include <iostream>
#include <pthread.h>
using namespace std;
void* func(void* arg)
{
cout << "Hello from thread!" << endl;
pthread_exit(NULL);
}
int main()
{
pthread_t thread;
int rc = pthread_create(&thread, NULL, func, NULL);
if (rc)
{
cout << "Error:unable to create thread," << rc << endl;
return -1;
}
pthread_join(thread, NULL);
return 0;
}
编译并运行程序,如果一切正常,应该可以看到输出“Hello from thread!”。