Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您将鼠标光标悬停在代码编辑器窗口中的函数名称上时,Visual Studio 具有显示有关函数的一些信息的功能。
有没有办法显示一些关于我自己的一些函数的提示,而不仅仅是关于库函数?
是的 - 只需在它期望的地方注释你的代码,它应该开始显示它们。
在 C++ 代码的情况下,它希望在 .cpp 文件中函数名称上方的行和/或 .h 文件中的相同行上添加注释 -就个人而言,我总是会尝试两者,因为人类也可以使用这些注释并找到它们那里!
扩张:
C++ 期望 C++ 风格的注释,即// Comment 紧接在函数声明之前 - 如果所有以//. 注意其他语言可能有所不同。
// Comment
//