|
2 |
edited tags
|
||
|
1 |
|
||
Using "final" modifier whenever applicable in javaIn Java, there is a practice of declaring every variable (local or class), parameter final if they really are. Though this makes the code a lot more verbose, this helps in easy reading/grasping of the code and also prevents mistakes as the intention is clearly marked. What are your thoughts on this and what do you follow?
|
||||
