Live data from Hacker News

Ask HN: Resources for learning Java?

news.ycombinator.com

11–20 of 21 posts

Re: Ask HN: Resources for learning Java?

#11
I've not done much Java for a while, but my most useful resources have been The Java Programming Language and The Java Developer's Almanac (especially the code samples, which I believe are available somewhere on java.sun.com).

Effective Java is also a great read for becoming a "better" Java programmer, but may or may not be useful to you right off the bat.

Re: Ask HN: Resources for learning Java?

#13
post #4

If you already have experience programming (which you do) try the following: First read the wikipedia page on the language. Download a medium-sized open source project, start at main() and try to understand what it does. Then, google for features/syntax you don't understand; read comments; have the api docs open; google for languages gotchas; google for techniques you don't understand. Once you do this enough to be c…

Thanks Yan
Post reply on HN