Tagged Questions
The self-documenting-code tag has no wiki summary.
16
votes
20answers
2k views
Do people use the Hungarian Naming Conventions in the real world?
Is it worth learning the convention or is it a bane to readability and maintainability?
7
votes
4answers
3k views
In Python, how do I indicate I'm overriding a method?
In Java, for example, the @Override annotation not only provides compile-time checking of an override but makes for excellent self-documenting code. I'm just looking for documentation (although if ...
1
vote
1answer
213 views
JavaScript Self-documenting code where's the API Docs tools?
These two concepts seem counter-intuitive. There's one side of the argument that sees the harm that comments do to readability, and violations of DRY (if the comments are even kept up to date). ...
1
vote
2answers
30 views
Should method/class comments be consistently applied or on a need basis only?
For consistency, I've always applied comments (in the form of a JavaDoc) to all methods and classes, even if they are simple getters and setters methods or very small wrapper classes. But I'm also ...