VS 2010可以自动检查/更新头文件吗?

发布于 2024-09-25 00:40:48 字数 156 浏览 2 评论 0原文

这几乎就是我的问题:VS 2010 可以自动检查和更新 C++ 代码中的头文件吗? VS 2010可以自动从头文件生成cpp文件,从而节省您从头文件复制函数定义的时间吗?我的意思是,它是否可以认为某些方法没有实现,并从头文件中找到的声明生成一个空存根?

谢谢!
金融理财师。

That's pretty much my question: can VS 2010 check and update header files in C++ code automatically? And can VS 2010 automatically generate a cpp file from a header file, saving you the time to copy the function definitions from the header file? I mean, can it figure that there's no implementation for some method and generate an empty stub from the declaration found in the header file?

Thanks!
CFP.

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

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

发布评论

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

评论(1

扎心 2024-10-02 00:40:48

否,Visual Studio C++ 实现中不存在此功能。对头文件的更改必须手动传播到源文件,反之亦然。

No this feature does not exist in the Visual Studio C++ implementation. Changes to a header file must be manually propagated to the source file and vice versa.

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