2

我第一次在 vs 代码中使用 c++/c 扩展名,在点击微软安装 c/c++extension 之后,我无法使用它

**// Simple C++ program to display "Hello World" 
// Header file for input output functions 
#include<iostream> 
using namespace std; 
// main function - 
// where the execution of program begins 
int main() 
{ 
    // prints hello world 
    cout<<"Hello World"; 

    return 0; 
}** 

这看起来像

在此处输入图像描述

4

1 回答 1

0

您可以尝试手动下载扩展

  1. 转到 vscode cpp 工具发布页面https://github.com/Microsoft/vscode-cpptools/releases

  2. 向下滚动并下载与您的操作系统相对应的 .vsix 文件(在您的情况下是 win32) 在这样的部分中查找您的操作系统

  3. 打开命令提示符并输入 code --install-extension <path to your downloaded .vsix file>

  4. 关闭并重新打开 VSCode,扩展程序下载窗口不应再出现

于 2020-06-02T06:49:58.243 回答