VS2012如何通过IntelliSense显示标准C++库的文档?

xxS*_*rdy 9 c++ documentation intellisense visual-studio-2012

几天前我使用Visual Studio 2012开始学习C++.我习惯使用IntelliJ IDEA编写Java,并且在调用方法时总是会显示文档和预期的参数.有没有办法在VS2012 for C++中执行此操作?

如果我理解正确,这应该已经因为IntelliSense而显示,但是如果我例如调用向量或字符串的成员函数,它只显示如下:

public: std::vector<std::string, std::allocator<std::string>>::const_iterator std::vector<std::string, std::allocator<std::string>>::begin() const

但没有任何东西表明返回的内容,预期的内容,此功能的作用.我只是错过了文档文件吗?

任何帮助是极大的赞赏!

Pau*_*mta -1

阅读所有模板和 std 命名空间很麻烦,但返回类型是vector<string>::const_iterator.

我听说 Stephan Lavavey(STL 的 Microsoft 维护者)提到,如果某些内容无法编译,他希望有更好的错误消息。也许这也会使智能感知更易于使用。