Obsolete Java Optimization Tips

前端 未结 8 1919
鱼传尺愫
鱼传尺愫 2020-12-12 14:57

There are number of performance tips made obsolete by Java compiler and especially Profile-guided optimization. For example, these platform-provided optimizations can drasti

相关标签:
8条回答
  • 2020-12-12 15:44

    I found links above outdated. Here is a new one on Java optimization: http://www.appperfect.com/support/java-coding-rules/optimization.html

    0 讨论(0)
  • 2020-12-12 15:50

    The final modifier on methods and method parameters doesn't help with the performance at all.

    Also, the Java HotSpot wiki gives a good overview of the optimizations used by HotSpot and how to efficiently use them in Java code.

    0 讨论(0)
提交回复
热议问题