Changes for page Clean Code

Last modified by chrisby on 2024/05/20 08:54

From version 1.12
edited by chrisby
on 2024/01/13 18:39
Change comment: There is no comment for this version
To version 1.14
edited by chrisby
on 2024/05/20 08:53
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,5 +1,5 @@
1 1  * **Clean = Readable + Maintainable**: Clean code is a set of technical practices for writing code that is readable, i.e., easy to understand, and maintainable, i.e., cheap to change. Both of these aspects reduce the overall programming effort required for future work. Whenever possible, code should be kept both readable and maintainable, which is most often the case, since the two usually go hand in hand.
2 -* **When in conflict, Readable > Maintainable**: However, when the two are in conflict, readability is often more important than maintainability, since code is read more often than it is written. The benefit of making code easier to read is simply greater than the benefit of making code easier to modify. For example, duplication is harder to maintain, but is often the lesser of two evils if it makes the code more readable, when there is no way to get both aspects right.
2 +* **Readable > Maintainable**: However, when the two are in conflict, readability is often more important than maintainability, since code is read more often than it is written. The benefit of making code easier to read is simply greater than the benefit of making code easier to modify. For example, duplication is harder to maintain, but is often the lesser of two evils if it makes the code more readable, when there is no way to get both aspects right.
3 3  
4 4  ### Topics
5 5