Clean Code: Comments
I am always surprised that this subject is still debated today. However, this discussion comes up regularly in talks with junior developers or even experienced developers. I show here my practices on comments that I use for more than 10 years on a daily basis. This article presents code examples in Java but the concepts apply to any language. The majority of comments are redundant Why write the same thing twice? When you ask the question this way, the question is quickly answered! However, it is still common to come across code like this: We will notice in the previous example that the comments have no added value compared to the code. From a reading point of view, your eyes have to focus on a lot more text than the same class without comments. We have to scroll constantly to read such classes. However, what’s the value of these comments? Nothing more than what is already expressed by the code. To convince ourselves, let's read the same class without any comments: Do you miss some...