Sun Java System Application Server 9.1 Performance Tuning Guide
この本のみを検索
PDF 文書ファイルをダウンロードする (1060 KB)

Declare Methods as final Only If Necessary

Modern optimizing dynamic compilers can perform inlining and other inter-procedural optimizations, even if Java methods are not declared final. Use the keyword final as it was originally intended: for program architecture reasons and maintainability.

Only if you are absolutely certain that a method must not be overridden, use the final keyword.