众所周知,代码不断变化。有人创建它,然后成千上万的人将更改函数和底层代码的参数。记录的功能参数不断变化。
例如,函数文档现在看起来像这样:
/**
* Updates the email of the user to the new one.
*
* @param type $new_email
* @param type $session
* @param type $security_key
*
* @return type
* @throws Exception_SessionExpired
*/
public function update_email($data)
当然它并没有反映当前的功能参数,更糟糕的是,还有更多像这样:(
如何一次性轻松更新文件中的所有功能文档?与根据代码约定格式化一样,有 Alt + Shift + F 。 NetBeans中是否还有更新文档的内容?
答案 0 :(得分:2)
我只需在函数声明前键入/**
,然后按Enter键。然后根据需要重新排序。