Does use of final keyword in Java improve the performance?

前端 未结 13 1292
粉色の甜心
粉色の甜心 2020-11-22 08:42

In Java we see lots of places where the final keyword can be used but its use is uncommon.

For example:

String str = \"abc\";
System.ou         


        
13条回答
  •  广开言路
    2020-11-22 09:01

    I'm not an expert but I suppose you should add final keyword to the class or method if it won't be overwritten and leave variables alone. If there will be any way to optimize such things the compiler will do that for you.

提交回复
热议问题