用于生成 C++ 的 Visual Studio 2010 扩展代码?

发布于 2024-12-02 11:34:30 字数 388 浏览 1 评论 0原文

我花了一整天的时间试图弄清楚VS2010是否可以使用变量生成代码模板。我正在学习 C++ 课程,希望避免每次创建新的 CPP 文件时进行复制/粘贴。我只是想为一个简单的 win32 控制台应用程序做这件事,所以它只是一个 cpp 文件。 VS2010 可以做到这一点吗?

/**
    @file <Filename>
    @author <Name>
    @date <Date>
    @version 1.0
*/

#include <iostream>

using namespace std;

int main(int argc, char* argv[])
{
    return 0;
}

谢谢,
低频4

I've been spending all day trying to figure out if it's possible for VS2010 to generate a code template using variables. I'm taking a C++ class wanted to avoid copy/pasting each time I create a new CPP file. I was just looking at doing it for a simple win32 console app so it's just once cpp file. Is this even possible with VS2010?

/**
    @file <Filename>
    @author <Name>
    @date <Date>
    @version 1.0
*/

#include <iostream>

using namespace std;

int main(int argc, char* argv[])
{
    return 0;
}

Thanks,
LF4

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦中楼上月下 2024-12-09 11:34:30

您可以通过创建项目然后使用导出模板向导将您的项目转换为项目模板来实现您想要的目的。您还可以手动创建项目模板。您可以在此处了解有关项目模板的更多信息。

对于更复杂的模板,您可以创建 Visual C++ 自定义向导

You may be able to achieve what you want by creating a project and then use the Export Template Wizard to turn your project into a project template. You can also create a project template manually. You can read more about project templates here.

For more elaborate templates you can create a Visual C++ Custom Wizard.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文