Search Results

2
votes

Using “final” modifier whenever applicable in java

Final should always be used for constants. It's even useful for short-lived variables (within a single method) when the rules for defining the variable are complicated. For example: …