如何使用默认标题和注释设置Visual Studio?

时间:2015-10-30 00:35:30

标签: c++ visual-studio interface header

我是使用Visual Studio的新手。目前我使用的是Visual Studio 2015版本。目前,当我设置一个新的C ++控制台应用程序项目(关闭或打开预编译头)时,它显示以下内容:

// Name of project.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int main()

{

return 0;

}

每次创建新项目时,我都要浪费时间输入标题信息和评论。每次我创建一个新的C ++控制台应用程序项目时,我希望它看起来像这样。

// *********************************************************************

// Name: 

// Description: 

// Date: 

// Class Section: 

// Title: 

// *********************************************************************

//Heading information
#include <iostream>
#include "stdlib.h"
#include "stdafx.h"
using namespace std;

//Main function

int main()

{

    //Pause system and end main function

    system("pause");

    return 0;

}

是否可以设置Visual Studio 2015以在每次创建新项目时显示上面的代码?感谢

1 个答案:

答案 0 :(得分:1)

  1. 创建一个新的控制台应用程序。
  2. 在新文件中编辑您想要的文件。
  3. 在“文件”菜单中选择“导出模板...”。
  4. 浏览向导(选择新模板的名称等)
  5. 确保选中“自动将模板导入Visual Studio”。
  6. 重启VS
  7. 选择“新建项目”
  8. 在左侧树控件中选择“Visual C ++”
  9. 在中间的列表中选择新模板
  10. 通常的新项目(项目的名称和位置等)
  11. [注意:正如我写的那样,我在VS 2013中看到它。我不记得它在VS 2015中有所改变,但它有可能。]