How do you write code that is easily read by other people and who have had no hand in writing any part of it?
|
The best way to ensure that others can read your code is to make sure that it is clear and concise. Namely,
Beyond that you start to get in to the areas that might be a bit subjective, most people should agree on these items. |
|||
|
|
|
This question is subjective, and should be avoided on StackOverflow, as per the FAQ
The short answer would be:
|
|||||||||||||||
|
|
You may want to take a look at Clean Code by Robert C. Martin. It offers up a lot of useful practices for ensuring your code is readable. Additionally, if your code is supported by a number of unit tests that thoroughly test your code, it offers a way for your user to understand the code by looking at what the tests are doing. You will also find that if you follow the Test Driven Development process, and you write tests for each bit of functionality, your functions tend to be small, do one thing only and do it well, and tend to flow more like a story than simply a large complex web of "stuff". Tests tend to stay up-to-date more than comments. I often ignore comments anymore due to simple fact that they become obsolete very quickly. |
||||
|
|
|
Keep code nice, clear and simple. Don't comment what you're doing when it's obvious (for instance I know what a foreach or if does, I don't normally need an explanation). Code tricks (such as auto properties) that make simple things take up fewer lines are good too. |
|||
|
|
|
Buy & read Code Complete 2. There's loads of stuff in there about writing easy to read / maintain code. |
|||
|
|
|
I don't think it's a subjective question, but it's too broad! It's not just about commenting and giving good variables names. It deals with how humans comprehends code. So your system must be implemented in a way that the reader can easily construct a mental model of its design in two way:
Kent Beck adopts three principles: Communication, Simplicity and Flexibility. Of course, sometimes you'll have to trade simplicity for flexibility, and vice-versa. This could go on and on. The answer to this question fits in a large book. As @rmbarnes suggested, buy and read Code Complete 2. I also suggest Implementation Patterns by Kent Beck - its highly related to your question. |
||||
|
|
|
|||||||
|
|
Since everyone else said pretty much what I'm thinking when I read this question, I'll just share two books related to this subject that you might be interested in reading. These books use open source code examples to explain how to read and write high quality code. In addition to Code Complete, I think they are valuable resources when you want to write good code in any language. |
|||
|
|
|
My rules:
|
|||
|
|
|
Jeffs post "When Understanding means Rewriting" highlights some good points. |
|||
|
|
|
Probably the most important point is to keep your syntax consistent. I would also have a look at the design guidelines for the language you are writing in. |
|||
|
|
|
From being a developer with serveral years under the belt, this used to be a real question for me. I couldn't even say how many hours I passed thinking about this and trying different things in my code. The above answers are very nice too. I just want to add a thing or two.
|
|||
|
|
|
I am most likely in the minority, but I don't mind whitespace. I LOVE WHITESPACE. Since the compiler takes it out and HD space being so cheap I like to have white space in my code. For example I like:
I do not like:
What I also put in Brackets even though technically they are not needed. The best example is the if statement. I find it greatly helps readability.
The best code to me, is one that as simple as possible. With the least comments as possible, and most importantly works. |
|||
|
|
|
A lot of good answers here, I would like to add something from the perspective of an engineer who likes the big picture. I frequently found that getting a high level overview, in terms of class diagram or a package level overview (diagram/comments etc), heck if nothing exists a 10 line header comments in a file to help me a lot. We can use Doxygen/Javadocs to generate them, or spend 10-15 minutes to just jot down something in comments section. They dont have to be 100% accurate, and I doubt the overall structure of classes/packages will change without a complete rewrite. I personally found this kind of big picture overview very helpful and am sure there are others who feel the same. |
|||
|
|