Obsolete Java Optimization Tips

前端 未结 8 1945
鱼传尺愫
鱼传尺愫 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: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.

提交回复
热议问题