BestPractice
Blog posts for the tag #BestPractice
03-Jul-2017
Code Odium: Using method parameters as local scope variablesThis is an instalment of my Code Odium series of articles talking about bad programming practices with focus on Java. In this article I will talk about the practice of declaring variables in a method parameter list only to use them as local variables.
27-Jul-2016
Code Odium: Unnecessary String concatenation and splittingI've decided that I'm going to start a new line of posts on my blog that deals with especially bad examples of code that I come across. These are meant to demonstrate how NOT to write code, specifically in Java. I will do an analysis of the bad code and will also provide my solution to fix the bad coding practice shown.