我是使用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以在每次创建新项目时显示上面的代码?感谢
答案 0 :(得分:1)
[注意:正如我写的那样,我在VS 2013中看到它。我不记得它在VS 2015中有所改变,但它有可能。]