几天前我开始使用 Visual Studio 2012 学习 C++。我习惯于使用 IntelliJ IDEA 编程 Java,并且在调用方法时总是会显示文档和预期的参数。有没有办法在 C++ 的 VS2012 中也这样做?
如果我理解正确,由于 IntelliSense,这应该已经显示,但是如果我例如调用向量或字符串的成员函数,它只会向我显示如下内容:
public: std::vector<std::string, std::allocator<std::string>>::const_iterator std::vector<std::string, std::allocator<std::string>>::begin() const
但没有任何指示返回什么,预期什么,这个函数做什么。我只是缺少文档文件吗?
任何帮助是极大的赞赏!