Reading source code - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:14:54Z http://stackoverflow.com/feeds/question/305094 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/305094/reading-source-code 3 Reading source code skifan0 2008-11-20T12:11:43Z 2008-11-20T13:12:55Z <p>If you read other people's source code, how do you approach the code? What patterns are you looking for (datatypes, loops, use of control flow, ... )? How long can you read other people's code without getting bored? What is the most exciting patterns that you have discovered so far?</p> http://stackoverflow.com/questions/305094/reading-source-code/305122#305122 0 Answer by Slavo for Reading source code Slavo 2008-11-20T12:23:41Z 2008-11-20T12:23:41Z <p>It all depends on what type of code you are reading. Is it a web app, a service, a desktop app? When I do start reading other's code I usually start looking for design patterns used. Or for the framework-specific things. But again this is if you are doing a review. If you are reading for your own interest and to learn something there really is no answer - you should read and understand the code thoroughly.</p> http://stackoverflow.com/questions/305094/reading-source-code/305157#305157 0 Answer by skifan0 for Reading source code skifan0 2008-11-20T12:37:41Z 2008-11-20T12:56:38Z <p>thanks, if I understand correctly, first step is to identify the context, second identify API's, and place the API's in context. I just realize it is a bit like looking at a building or piece of art, you could focus on the material used, or the function of parts, try different perspectives, judge how parts fit in the whole... there is a nice piece of the process of discovery: <a href="http://press.princeton.edu/chapters/i8386.html" rel="nofollow">here - how mathematicans think</a></p> http://stackoverflow.com/questions/305094/reading-source-code/305159#305159 6 Answer by Gamecat for Reading source code Gamecat 2008-11-20T12:38:02Z 2008-11-20T12:38:02Z <p>At first, I ignore the urge to change the code. Which is sometimes hard to do. But understanding first and change later saves yourself a lot of nasty "learning experiences."</p> <p>Next if the format is bad, reformat. Use a code formatter if you have one. This is because you tend to look at the indentation and if that is bad, your understanding of the code is also questionable.</p> <p>Then, if there are complex datastructures, I like to draw a little diagram. The challenge here is keep it as simple as possible. Large diagrams are fun on the wall, but most of the time, they are to cumbersome to look at. So it is wasted time.</p> <p>If you finally understand what a piece of code does, write a comment. This is essential, because else you won't understand it the next time you are here.</p> <p>The following step is to create unit tests. Now you can not only test the code, but you can also test your understanding of the code. </p> <p>Last, if you understand it al and you know it can (and need to be) better, change it. But be sure to run the tests. Unless you are paid by each solved bug.</p> http://stackoverflow.com/questions/305094/reading-source-code/305173#305173 3 Answer by JesperE for Reading source code JesperE 2008-11-20T12:41:56Z 2008-11-20T12:41:56Z <p>A hip new term for this is <a href="http://www.codespelunking.org/pages/cs_definition.html" rel="nofollow">Code Spelunking</a>.</p> http://stackoverflow.com/questions/305094/reading-source-code/305191#305191 0 Answer by Colonel Sponsz for Reading source code Colonel Sponsz 2008-11-20T12:48:10Z 2008-11-20T12:48:10Z <p>Pick an item you understand in the final product and see how it is put together. If you've got the unit tests then they are a great help.</p> http://stackoverflow.com/questions/305094/reading-source-code/305252#305252 0 Answer by joel.neely for Reading source code joel.neely 2008-11-20T13:12:55Z 2008-11-20T13:12:55Z <p>Aside from the obvious "work from the top down" general approach, it depends on <strong>why</strong> I'm reading it: code review, trying to understand a bit of avaialable code to adapt for my own use, trying to learn a new technique, etc.</p> <p>It also depends heavily on the language. If it is an OOPL, I'll probably do something like this:</p> <ol> <li>Look first for the primary class relationships and try to understand the primary responsibility of each class.</li> <li>Look at the interactions between classes to see how they collaborate.</li> <li>Look at the interfaces of the key classes to see what "services" they offer their collaborators.</li> <li>Look inside the non-trivial methods if it's important to understand <strong>how</strong> they are working instead of <strong>what</strong> they are responsible for.</li> </ol>