Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to development, and I had training in Java and android. whats the right way to read Java code and understand how does it work ? I tried to use pen/paper to write the classes and its methods and how its connecting to each others, in order to understand how does it all works. but still it looks complicated.

whats the right way to read Java Code, and is there is any tool to make it more understandable ?

share|improve this question
3  
more practice is the tool – mkoryak Apr 30 '12 at 16:48
2  
Your ... brain. It's an awesome tool. – Brian Roach Apr 30 '12 at 16:49
1  
I would read the unit tests first (if there are any) and step through the running code in a debugger. esp if it doesn't work the way I think. – Peter Lawrey Apr 30 '12 at 16:49
1  
"how its connecting to" This is often well represented in UML – Andrew Thompson Apr 30 '12 at 16:50
IntelliJ Community Edition – sparc_spread Apr 30 '12 at 16:51
show 4 more comments

closed as not a real question by Brian Roach, mkoryak, PeeHaa 埽, sg3s, Michael Buen Apr 30 '12 at 16:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

All I can say is, Examples and Projects.

There is no way better to learn a programming language than starting with tutorials to grasp the syntax. theNewBoston is one of the best beginner sites out there for ANY coding tutorials and practices: HERE

Once you feel comfortable with the basics, try implementing the above tutorials with better structure and more complex functionality.

share|improve this answer
-1 because there are definitely tools. – Thomas Uhrig Apr 30 '12 at 17:11
I gave him a learning tool, it's called structured tutorials. Since his question was so vague, I don't see why I should be the one with the down vote. Does this make sense @ThomasUhrig? I hope you understand. – Ben Sewards Apr 30 '12 at 17:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.