首頁  >  問答  >  主體

visual-studio-code - vscode配置c/c++怎么让编译之后立刻运行?

只是想编译之后立刻运行,像sublime那样从文件读入后输出到下面控制台。
写了个tasks.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "0.1.0",
    "tasks": [
        {
            "taskName": "build",
            "command": "g++",
            "isShellCommand": true,
            "args": [
                "-o",
                "${workspaceRoot}/main",
                "${workspaceRoot}/main.cpp"
            ],
            "showOutput": "always"
        },
        {
            "taskName": "run",
            "command": "${workspaceRoot}/main",
            "isShellCommand": true,
            "showOutput": "always"
        }
    ]
}

为啥,第二个任务不会运行。。

高洛峰高洛峰2765 天前608

全部回覆(1)我來回復

  • 天蓬老师

    天蓬老师2017-04-17 15:27:32

    現在VS Code的任務是不會連續執行的。

    解決方法:

    1. 利用外部工具,例如寫腳本、msbuild、make等等

    2. 配置調試,不加斷點,編譯後再按F5運行

    2017-03-02更新:

    VS Code 1.10支援組合多個任務了,也可以給單一任務設快捷鍵。

    回覆
    0
  • 取消回覆