Ask HN: How to take notes when reading the source code of a large project?
1 comments
I usually try to make a UML Sequence diagram so I know what classes are being instantiated and what methods are being called as well as what's being returned. Also, I try to make as many type hierarchies as I can, especially when abstract classes are involved.
I wonder whether you take notes when reading source code. Is there any good way to read the source code of a large project? Thanks.