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.
问题是当我在 Netbeans 中编写 PHP 代码时,我想稍微舒服一点。 当编辑光标位于长方法源的中间时, 我想按一个快捷键跳转到该方法的开头。
例如:
public function doStuff($arg1,$arg2) <--- I want to jump here... { $a = $b; $b = $c; $c = $d; $d = $e; <--- cursor is here ..... }
这对我来说很好:Ctrl+7+return
Ctrl+7
return
最好的解决方案:不要编写超过一屏的函数(这已经很长了)。
具有许多局部变量的长函数对可维护性非常不利:它们难以理解并且会包含不成比例的更多错误。
取而代之的是,将它们分解为只做一件事的更小的函数,并且有一个可以准确描述它们所做工作的名称。