当前位置: 代码网 > it编程>编程语言>C/C++ > C++多线程开发环境配置方法

C++多线程开发环境配置方法

2025年11月26日 C/C++ 我要评论
下载安装 mingw-w64https://winlibs.com/必须选择带 “posix” 的版本,这是多线程支持的关键!解压到 c:\mingw64(路径不要有空格和中文

下载安装 mingw-w64

https://winlibs.com/

必须选择带 “posix” 的版本,这是多线程支持的关键!
解压到 c:\mingw64(路径不要有空格和中文)
配置环境变量
右键"此电脑" → 属性 → 高级系统设置 → 环境变量
在 系统变量 中找到 path → 编辑 → 新建 → 添加:
c:\mingw64\bin
验证安装
按 win+r,输入 cmd 回车,执行:

g++ --version

下载安装vs code

安装完成后安装 vs code 扩展:
打开 vs code,点击左侧扩展图标(四方块),搜索并安装:
c/c++ - microsoft(必装)
c/c++ extension pack - microsoft(推荐)

安装后 重启 vs code。

创建测试项目

在桌面新建文件夹 cpp-thread-test
用 vs code 打开该文件夹(文件 → 打开文件夹)
新建文件 main.cpp,粘贴以下代码:

#include <iostream>
#include <thread>
#include <vector>
#include <mutex>
std::mutex mtx;
void print_thread_id(int id) {
    std::lock_guard<std::mutex> lock(mtx);
    std::cout << "thread " << id << " is running\n";
}
int main() {
    std::vector<std::thread> threads;
    for (int i = 0; i < 5; ++i) {
        threads.emplace_back(print_thread_id, i);
    }
    for (auto& th : threads) {
        th.join();
    }
    std::cout << "all threads completed!" << std::endl;
    system("pause");  // 防止闪退
    return 0;
}

配置编译任务

创建 tasks.json

按 ctrl+shift+p,输入 “tasks: configure default build task” → 选择 “create tasks.json file from template” → 选择 “others”。
将生成的文件内容 全部替换 为:

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build c++ multi-thread",
            "type": "shell",
            "command": "g++",
            "args": [
                "-g",
                "${file}",
                "-o",
                "${filedirname}\\${filebasenamenoextension}.exe",
                "-std=c++17",
                "-pthread"
            ],
            "group": {
                "kind": "build",
                "isdefault": true
            },
            "problemmatcher": ["$gcc"],
            "detail": "编译带线程支持的 c++ 程序"
        }
    ]
}

关键参数说明:
-g:生成调试信息
-std=c++17:使用 c++17 标准
-pthread:启用多线程支持

创建 launch.json

点击左侧运行和调试图标(▶️)→ 点击 “创建 launch.json 文件” → 选择 “c++ (gdb/lldb)” → 选择 “g++.exe - 生成和调试活动文件”。
将生成的文件内容 全部替换 为:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "c++ debug multi-thread",
            "type": "cppdbg",
            "request": "launch",
            "program": "${filedirname}\\${filebasenamenoextension}.exe",
            "args": [],
            "stopatentry": false,
            "cwd": "${workspacefolder}",
            "environment": [],
            "externalconsole": true,  // 使用外部控制台防止闪退
            "mimode": "gdb",
            "midebuggerpath": "c:\\mingw64\\bin\\gdb.exe",  // 按实际路径修改
            "setupcommands": [
                {
                    "description": "为 gdb 启用整齐打印",
                    "text": "-enable-pretty-printing",
                    "ignorefailures": true
                }
            ],
            "prelaunchtask": "build c++ multi-thread"
        }
    ]
}

手工配置编译任务

如果在上一步的配置调试设置
这里没有看到: 选择 “g++.exe - 生成和调试活动文件”。
因为 vs code 没检测到 g++ 编译器。终极解决方案:手动创建配置
目文件夹里,找到 .vscode 文件夹,删除里面所有文件(launch.json, tasks.json 等)

创建 tasks.json

右键 .vscode 文件夹 → 新建文件 → 命名为 tasks.json → 粘贴:

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build c++ multi-thread",
            "type": "shell",
            "command": "g++",
            "args": [
                "-g",
                "${file}",
                "-o",
                "${filedirname}\\${filebasenamenoextension}.exe",
                "-std=c++17",
                "-pthread"
            ],
            "group": {
                "kind": "build",
                "isdefault": true
            },
            "problemmatcher": ["$gcc"]
        }
    ]
}

创建 launch.json

右键 .vscode 文件夹 → 新建文件 → 命名为 launch.json → 粘贴:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "c++ debug multi-thread",
            "type": "cppdbg",
            "request": "launch",
            "program": "${filedirname}\\${filebasenamenoextension}.exe",
            "args": [],
            "stopatentry": false,
            "cwd": "${workspacefolder}",
            "environment": [],
            "externalconsole": true,
            "mimode": "gdb",
            "midebuggerpath": "c:\\mingw64\\bin\\gdb.exe",
            "setupcommands": [
                {
                    "description": "为 gdb 启用整齐打印",
                    "text": "-enable-pretty-printing",
                    "ignorefailures": true
                }
            ],
            "prelaunchtask": "build c++ multi-thread"
        }
    ]
}

新建项目时,直接复制整个 .vscode 文件夹到新项目根目录

到此这篇关于c++多线程开发环境配置方法的文章就介绍到这了,更多相关c++多线程环境内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com