I will blog about things I've learned, it may be related to programming or may be just some random stuffs!
I have to admit that the idea of Clean Code is really new to me, and all the code smell signs that I never knew before! until I was exposed to Agile development framework - Scrum. I was suggested to read a book called Clean Code after I attended the TDD workshop from Odd-E. I really have to say that it changed my perspective about writing code!!! and Martin Fowler once said that:
Any fool can write code that machine can understand. Good programmers write code that humans can understand
Since then, I try pay more attention when I write code and here are a few things that I have changed:
So, does it really help me write a clean code? not totally, but it helps me to care more about the code that I produce, at least it is better than it was!
The definition of clean code are different for different people but I think they all agree that clean code is not dirty code. Em… you may ask what is is dirty code then? Dirty code has one characteristic, it calls code smell. Like many other dirty things, we try to avoid it, we don’t want to get involve with it and it applies to the code as well. So, my definition of clean code is a code base that I am comfortable to work with, it’s the code that is easy to change and maintain. It just take only a few scroll to see how much the author care about the code.
Have you ever encounter a situation where you need to apply your changes and you have Ctrl+C and Ctrl+V to all over the code base, scrolling through the few hundred lines of a function trying to understand what it does, or don’t know what function to use. At least, those had happened to me once, and I have realised that those are the sign of code smell!. Then, I try to reflect back to my code base, says, what if there’s no duplicated code, I would just have to change in only one place (sounds nice huh!) I would say having a clean code base brings lots of benefits especially the code the we are regularly maintaining.
First, stop writing dirty code. Second, Refactoring. When you are refactoring the code, it is like you are going into a war! you need a good armour to protect your self from enemies (bugs) and you need a sword to help you to eliminate those bugs. In other words, you need to have good unit tests wrapping around the area you want to change before you do refactoring, and some good refacotring tools that help you to do those job. For example in our case is NUnit, Resharper, Code Coverage tools or Continuous Integration (CI) server
But, to have a good test in place, you need to refactoring you code first. Oh, wait a minute, does it sound like the chicken and egg problem here? Probably not, there are a few safe techniques that you can use to refactoring without having test first. For examples, lean in compiler, extract interface, scratch refactoring, extract and override, renaming, etc. These are just a few, and many useful that are described in the book Wokring Effectively With Legacy Code and it’s available in our library!
Like other things, we learn best when we practise it and there are so many training and tutorials online waiting for you tackle them. If you really can’t find, just practise with your code base. Just try to do and see you much you can change the code to be cleaner. Reading books also help, it give you some techniques to deal with certain problems, or showing you that there are other ways to look at the problems.
It is easy to write code, but writing a cleaner code is taking much more effort to do and it’s not just happen over night. It takes times to learn and experiment with. Find your own motivation, I can you tell over and over about what is clean code, but it probably get you to nowhere, if you just only read about it.