show/hide this revision's text 2 Spelling, usage and formatting

Declaring a local variable final will not effect affect garbage collection, it only means you can not modify the variable. Your example above should not compile as you are modifying the variable "totalWeight" totalWeight which has been marked final. On the other hand, declaring a primative primitive (double instead of Double) final will allows that variable to be inlined into the calling code, so that could cause some memory and performance improvement. This is used when you have a number of public static final Strings in a class.

In general, the compiler and runtime will optimize where it can. It is best to write the code appropriately and not try to be too tricky. Use final when you do not want the variable to be modified. Assume that any easy optimizations will be preformed performed by the compiler, and if you are worried about performance or memory use, use a profiler to determine the real problem.

show/hide this revision's text 1

Declaring a local variable final will not effect garbage collection, it only means you can not modify the variable. Your example above should not compile as you are modifying the variable "totalWeight" which has been marked final. On the other hand, declaring a primative (double instead of Double) final will allows that variable to be inlined into the calling code, so that could cause some memory and performance improvement. This is used when you have a number of public static final Strings in a class.

In general, the compiler and runtime will optimize where it can. It is best to write the code appropriately and not try to be too tricky. Use final when you do not want the variable to be modified. Assume that any easy optimizations will be preformed by the compiler, and if you are worried about performance or memory use, use a profiler to determine the real problem.