Views: 19.1K
Replies: 2
Archived
|
Question on multiple if else statements in codeHi,
I am working on a maintenance project and I see at lot of places the application logic is written in if..else if..else conditions. Many times the if conditions check the value of a variable against a hard-coded string/number. I think there is something wrong with the code and it needs to be improved. Can anyone please suggest whether I should change such code with any specific pattern? Also, it would be helpful if someone could share an example/link that shows sample conversion code. Thanks in advance. Harshad Riswadkar, Aug 30, 2010
|
|
Reply 1You MUST re-factor your code on first place to make it clean and readable (though it may add more LinesOfCodes
I have seen plethora of similar spaghetti code in PRODuction env. where the coder had left the organization or it was the NEED of hour to publish such code. DPattern choice depends how complex is the algorithm inside the if blocks is? Strategy is the pattern where you can put Different Algo int saperate subclasses and use them independently (same as If blocks) Note that you can NOT configure mix of these Algo - Builder does that Shridutta Pachori, Sep 07, 2010
|
|
Reply 2Hi,
Without seeing your code, I would recommend you to take a look at the strategy design pattern. There is a previous post on a similar topic here (http://dofactory.com/topic/1158/replace-conditional-vb-net-select-case-with-strategy-pattern-how.aspx). Good Luck! Robert Blixt, Aug 31, 2010
|