3

最后,我在 Eclipse 中使用了很多 Java,并且习惯了自动添加导入的++快捷方式ctrl。现在我回到了使用 Visual Studio 2010 进行 C++ 编码,我有点恼火没有这样的快捷方式(或者我可能错过了它)。alto

这必须是可能的,因为 Intellisense 检测到我想要使用的类并在我声明一个新变量时向我展示所有可能性,它必须知道需要的标头在哪里。

该功能似乎存在于 Visual Studio 插件中:Visual Assist X。

编辑:关于这篇文章,VS2010 中似乎缺少该功能。这正是我正在寻找的功能:#include <set>在我编写的代码中的某处std::set<int> myset;或任何自定义类中自动添加时间。

4

2 回答 2

4

When your caret is on the class name itself you can press ctrl + . (that's a period) This will bring up a list of potential import matches. Select the one you want and press enter.

This only works if the assembly containing the class is referenced in the project itself.

于 2012-04-24T15:33:33.397 回答
0

上下文菜单键 -> 解决 -> 选择正确的类。

于 2012-04-24T15:26:25.007 回答