Don't Write Comments
Summary
TLDRThe video script advocates for minimal use of comments in code, suggesting that clarity should be achieved through better code design and naming conventions. It emphasizes the importance of using constants, refactoring complex conditions, and leveraging types to convey information that would otherwise require comments. The speaker highlights the issues with comments, such as their tendency to become outdated and the lack of a system to ensure their accuracy. Instead, the script promotes high-quality code documentation that describes the system's architecture and public APIs, which can be generated by tools like Doxygen, pydoc, and JavaDoc to keep in sync with the code. The speaker acknowledges that comments may still be necessary in certain cases, such as explaining non-obvious performance optimizations or referencing specific algorithms, but overall, code should be self-explanatory.
Takeaways
- đ Avoid writing comments in code whenever possible, as they can become outdated and unreliable.
- đ Use meaningful names for variables and constants to make code self-explanatory, reducing the need for comments.
- đ Simplify complex conditions by breaking them down into named variables, making the code more readable.
- đ If a condition is complex, consider refactoring it into its own function for clarity.
- đ Types can eliminate the need for comments by conveying ownership and responsibility, as seen in C++ with unique_ptr.
- đ Use types to express optionality or special conditions, such as returning an optional int, which makes the code safer.
- đ« Comments can be misleading and are not checked by tools, unlike code, which has tests and compiler checks.
- đ Focus on high-quality code documentation that describes the system's architecture and public APIs, rather than internal workings.
- đ§ Tools like Doxygen, pydoc, and JavaDoc help generate documentation from code, keeping it in sync with changes.
- đ Document class or API expectations, such as thread safety and error conditions, to help users and implementers.
- đ There are rare cases where comments are necessary, such as explaining non-obvious performance optimizations or referencing algorithms.
Q & A
What is the speaker's stance on writing comments in code?
-The speaker believes that comments in code should be avoided most of the time, as they can become outdated and are not as reliable as the code itself.
How can a constant be used to improve code readability?
-A constant can replace a magic number, like '5', making the code more self-explanatory and easier to understand without the need for comments.
What is the speaker's suggestion for handling complex conditions in code?
-The speaker suggests simplifying or refactoring the code to make it more understandable, or moving the complex condition to its own function.
How do types in C++ help reduce the need for comments?
-Types like unique_ptr in C++ can convey ownership and responsibility for memory management, eliminating the need for comments that might otherwise explain this.
What is the difference between code documentation and comments?
-Code documentation describes the high-level architecture and public APIs, focusing on how to use the code, while comments explain the internal workings of the code.
Why are comments less reliable than code?
-Comments can become outdated when code changes, and there are no systematic tools to ensure their accuracy like there are for code, making them less reliable.
What is the speaker's approach to understanding code?
-The speaker prefers to read the code itself rather than the comments, as code cannot lie and is a more precise expression of intent.
What are some cases where the speaker believes comments might still be necessary?
-Comments might be useful for explaining non-obvious performance optimizations or referencing specific algorithms or mathematical principles.
How can code be made more 'human'?
-By improving the API design and making the code more intuitive, it can express intent more clearly without the need for human language descriptions.
What is the speaker's view on the future of programming and AI?
-The speaker humorously suggests that while some believe AI will replace the need for code, they argue that code is a precise way of writing a specification and that AI might lead to sociopolitical challenges.
What tools are mentioned for generating documentation from code?
-Tools like Doxygen, pydoc, and JavaDoc are mentioned as they can generate documentation directly from code files, helping to keep the documentation in sync with the code.
Outlines
đ The Case Against Code Comments
This paragraph discusses the author's opinion against writing comments in code most of the time. It argues that comments can be redundant and suggests using constants and better code structure to convey the same information. The author emphasizes the importance of simplifying complex conditions and using types to make code self-explanatory, reducing the need for comments. It also highlights the problems with comments, such as them getting outdated or being ignored, and contrasts them with code documentation, which is considered more valuable and useful for understanding how to use the code.
đ€ The Future of Code and AI
The second paragraph presents a hypothetical scenario where a developer is told that in the future, code will be written by AI based on specifications. The author disagrees with this notion, stating that code is a precise way of expressing a specification and that AI's impact on jobs is a separate issue. The paragraph suggests that instead of relying on comments, the code itself should be made more understandable, and it asks the audience for their thoughts on when comments might be necessary.
Mindmap
Keywords
đĄComments in code
đĄCode readability
đĄRefactoring
đĄType system
đĄOwnership
đĄOptional types
đĄCode documentation
đĄAPIs
đĄStatic analysis
đĄNon-obvious performance optimizations
đĄAlgorithms and mathematical principles
Highlights
The speaker suggests that comments in code are often unnecessary and can be replaced with better code practices.
Using constants instead of magic numbers can improve code readability without the need for comments.
Complex code conditions can be simplified or refactored, reducing the need for explanatory comments.
Naming parts of expressions with variables can make the code self-explanatory, eliminating the need for comments.
Moving complex conditions to their own functions can clarify code without relying on comments.
Using types like unique_ptr in C++ can convey ownership information without comments, and enforce it at compile time.
The speaker advocates for using types like optional int to indicate the possibility of missing values, instead of relying on comments.
Comments can become outdated and may not be updated with code changes, unlike code which has built-in checks.
The speaker prefers reading code over comments to understand its functionality, as comments can be untrustworthy.
Code documentation is preferred over inline comments for describing the architecture and public APIs of a system.
Tools like Doxygen, pydoc, and JavaDoc generate documentation from code, helping to keep it in sync with the codebase.
Documenting class or API expectations, such as thread safety and error conditions, is important for API consumers and implementers.
There are cases where comments are necessary, such as explaining non-obvious performance optimizations or referencing mathematical principles.
The speaker believes that code is a more precise way of expressing intent than comments and that comments should be used sparingly.
The speaker humorously references a comic strip about the future of programming, where code is seen as a precise form of specification.
The speaker acknowledges the potential societal impact of AI replacing jobs, but maintains that code is a superior form of expression.
Transcripts
It's time to get a bit controversial.
I don't think you should write comments in your code
pretty much most of the time.
Here,
we have some code where we expect the value to be 5
Looking at this code, it's not obvious what five signals.
We could add a comment explaining what five is,
but even better we can create a constant representing the variable instead.
The if statement now reads like a comment:
that we want status to be message sent.
If your code is complex enough that it warrants a comment, you should instead
see if you can simplify or refactor the code to make it better instead.
Right now, this condition is complex enough
that we add a comment explaining it, but we can simplify this
by using variables to name parts of the expression.
Now the condition reads like the comment does.
So the comment is basically redundant and can be removed.
When conditions are complex enough like this,
you could also consider moving the whole condition to its own function.
Now you don't need to decipher at all.
Types can also make comments redundant.
In C++, there's no built in memory management.
You often have a function like this where you get back a thing,
but we need to make clear who will take ownership of the thing.
Ownership, meaning the responsibility
to release the memory after everyone is done with it.
In older C++, you pretty much had to rely on comments to do this.
If you were given ownership of an object, you'd find out by reading
the comments of the function.
But C++ added a new type called unique_ptr.
The type represents a unique reference to the object.
So if you get one, congratulations!
It's now your responsibility.
The type tells you explicitly
that you now own it without the need for a comment.
And even better, the type makes it so you get a compile error
if you do bad things with it.
A comment doesn't do that.
Likewise, if we have a function that returns an int,
but that int is optional.
We could add a comment saying that -1 means we're not actually
returning a value.
But even better, we could use a type.
If we return an optional int instead, it's
now obvious that we might not give a value.
We can't miss the comment and not realize that we might get
an invalid timestamp back.
The user needs to handle a missing value or they'll get a compiler error.
You might
wonder why don't we just make our code high quality and add comments anyways?
Isn't more comments just better?
That ignores the problems with comments.
Comments get bugs like code.
When people make changes to code,
they often don't update the comments to match.
But unlike comments, we have tools to stop bugs from entering code.
We have tests, compiler checks and limiting.
We don't have any system like that for comments.
Maybe one day we can have some static analysis tool that uses AI to determine
if the code matches the comments and flags any discrepancies -
there's a start up idea - but because of this I don't trust the comments
even when they exist.
Comments can lie, but code cannot.
So when trying to understand what a piece of code does, I read the code.
I never read the comments.
Maybe it's just me.
Do you guys find yourself reading comments to understand code?
What I do read is code documentation.
Code documentation describes the high level
architecture and public APIs of a system.
Code documentation differs from comments
where comments describe the internals of how your code works.
Documentation describes how you use the code.
The world needs more high quality documentation,
and while we could write the documentation for our code
completely separated from our code, it makes sense to keep our documentation
as close to the code as possible in order to try to help them stay in sync.
Tools like Doxygen, pydoc and JavaDoc generate documents
directly from code files and therefore change alongside our code.
It's useful to document what a class or API represents
and any expectations for interface definitions
like thread safety, possible states or error conditions.
This helps the consumers of the API know how to use it and also helps
any new implementers of the interface
know how they're supposed to operate and behave.
The guidance I've given about comments still applies for documentation.
If we write better APIs, our documentation will be more concise
and less prone to errors.
But I concede that you'll never be able to make all of the parts
of the system obvious with pure code.
I do think there's a few cases where you should consider comments:
if the code does something non-obvious for performance reasons,
a comment can help explain why the code looks weird.
If the code is utilizing a specific
mathematical principle or an algorithm from a particular source
you might consider linking to the source to help future maintainers.
There's this comic called comic strip,
and one of the comics is about a guy
telling a developer that one day we won't need code in the future
because you'll be able to
simply write a spec and the program will just write itself.
The developers are casting retorts that code is just a more precise way
of writing a spec.
I mean, I think it's wrong. And A.I.
is coming for all our jobs, and we should be afraid
of the impending sociopolitical turmoil that comes when our best tool
for distributing wealth, the job disappears.
But alas, it still helps my point.
Code is a much better way to express intent than comments about code.
So in general, if you feel like you need human language to describe your code,
see if you could make your code more human.
What other cases do you think comments are needed?
5.0 / 5 (0 votes)