Visual Studio C++ 控制台应用程序

Visual Studio C++ console application

我最近不得不重新安装 visual studio。以前当我选择 Windows 控制台应用程序时,它会加载 #include "stdafx.h"。现在出于某种原因,它加载了#include "pch.h" 和一个 "hello world" 程序。我只是希望它像以前一样默认加载 stdafx.h 和 int main { return 0} 。我需要 stdafx.h,这是我学校项目的要求,所以我真的很希望它像以前一样作为默认值加载。任何帮助将不胜感激。我张贴了它现在如何加载的图像。

Visual Studio pch.h

只需创建一个新模板即可。

  1. 创建一个新的控制台应用程序。
  2. 在新文件中根据需要编辑文件。
  3. Select "Export Template..." 在 "File" 菜单中。
  4. 完成向导(为您的新模板选择一个名称等)
  5. 确保 "Automatically import the template into Visual Studio" 已选中。
  6. 重启VS
  7. Select "New Project"
  8. Select "Visual C++" 在左边的树形控件中
  9. Select你的新模板在中间的列表中
  10. 通常的新项目内容(项目的名称和位置, 等等)

来源:How do I set up Visual Studio with default headers and comments?