我正在尝试将项目从Visual Studio切换到Eclipse。在Visual Studio中,您可以使用xml注释来注释函数和参数。然后在代码完成中显示这些注释。
/// <summary>
/// The function HotKey.DeInstallKey() deinstalls a single HotKey. The function uses an ASCII character to identify the key that has to be deinstalled. The function works for local and for global HotKeys.
/// </summary>
/// @cond VISUAL_PARAM
/// <param name="Key">The HotKeyTag.</param>
/// @endcond
/// @param[in] Key The HotKeyTag.
void DeInstallKey(int Key);
Eclipse是否也支持它,或者我如何更改注释以实现相同的功能?