支持 C++ VS 中的重构(自动更新引用和 header/cpp)
在 Visual C# 中,我可以在其定义处重命名实体,然后单击两次该实体的所有引用即可更新。我如何在 Visual C++ 中执行此操作?如果不支持,有其他IDE支持吗?
请注意,在 C++ 情况下,我还希望自动标头/实现同步,因此我几乎不需要做重复的工作。
In Visual C# I can rename an entity at its definition, and with two clicks all references to that entity get updated. How do I do this in Visual C++? If it's not supported, is there another IDE that supports it?
Note that in the C++ case I also want automatic header/implementation synchronization, so I hardly ever need to do duplicate work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VS 无法单独完成此操作,但使用 Visual Assist X(整个番茄软件)之类的插件就可以做得很好。
VS won't do it alone, but with an add-in like Visual Assist X (Whole Tomato Software) it does quite nicely.
有 Visual C++ 2005 的重构 (http://msdn.microsoft.com/ en-us/visualc/bb737896.aspx)。
哦,StackOverflow 上有类似的主题:有一个可用的 C++ 重构工具吗?< /a> - 检查一下!
There is Refactor for Visual C++ 2005 (http://msdn.microsoft.com/en-us/visualc/bb737896.aspx).
Oh, there is similar topic on StackOverflow: Is there a working C++ refactoring tool? - check it!