| Article: |
Seven Low-Cost Ways to Improve Legacy Code | |
| Subject: | Heuristics vs Rules | |
| Date: | 2004-10-27 15:39:47 | |
| From: | dubwai | |
|
Response to: Heuristics vs Rules
|
||
|
No, you are not missing anything. Making the parameter final has no effect on anything but the method body. Generally I don't bother with setting variables final except in setters or constructors (i.e. when the parameter and a member could be confused) but I guess if you are paranoid it makes sense to always do it.
|
||
Showing messages 1 through 2 of 2.
-
Heuristics vs Rules
2004-10-28 08:23:12 Robert Simmons, Jr. |
[View]
-
Heuristics vs Rules
2004-10-28 08:37:52 dubwai [View]
No you don't lose anything by doing it and in fact I've decided that if we could go back an design Java from the ground up, all parameters should be implicitly final. The only advantage that non-final parameters give is that you can reuse them as locla variables. That is, there's really no meaningful advantage at all.
Marking the parameter final is a useful technique. It's the only way to compile check that you are not making the "setting the parameter instead of the member" mistake that 'every' developer has made. But I've never had it help me when the method is not setting a member of the class or instance. I'm not really sure how it would.



As for my comment, I can see how it would be confusing and should be cut. I cant think of a way to rephrase it to get across the meaning which would be pretty redundant given the previous sentence. Basically I meant that the only time you shouldnt make it final is when you have some reason for wanting ti to be that way on purpose. Those instances are very rare in my experience.
Thanks for the comments and corrections. =)