I'm about to finish with Head First Java book. Can you recommend me some other books I can keep studying with. Thinking in Java looks like still a bit complicated for me, might be there a kind of advanced level of head first Java or something?

link|improve this question

feedback

6 Answers

up vote 8 down vote accepted

Effective Java is definitely the number 1 java book every java developer should read more than once.

That said: if you liked Head First Java, try Head First Design Patterns.

link|improve this answer
I had a coworker recommend Head First Design Patterns. The book drove me nuts. It was too pedantic and rote. Effective Java, however, is great. – Erick Robertson Sep 29 '10 at 11:35
So the result of recommending one book you call great and one you didn't like is a downvote? Jeez, I'd downvote most of this site if I were like that... – Sean Patrick Floyd Sep 29 '10 at 11:52
feedback

Start practically implementing the things with this standard tutorial.

link|improve this answer
+1 That's the tutorial I used to learn Java; it's very good. (Ah, the memories...) – sleske Sep 29 '10 at 9:52
+1 Amen. The best way to learn. – Erick Robertson Sep 29 '10 at 11:33
feedback

Please read the following books:

Bible for Java ,Read each paragraph more than once.These books answers How,When,What and Why questions.

  1. Effective Java by Joshua Bloch.
  2. Thinking in Java by Bruce Eckel.
  3. Concurrency in Practice by Doug Lea.
link|improve this answer
2  
I'm not sure if I'd suggest the Concurrency in Practice at that level. Maybe buy it now, read the first half now and read the second half in a year or two. It is a great book, but not for beginners. – Sean Patrick Floyd Sep 29 '10 at 9:53
1  
3. [ Java Concurrency in Practice](javaconcurrencyinpractice.com) by Brian Goetz et al. (True, Doug Lea is one of the authors.) – Péter Török Sep 29 '10 at 9:54
1  
+1 for thinking in Java – Matthieu Sep 29 '10 at 9:55
-1 for Concurrency in Practice – Stas Kurilin Sep 29 '10 at 10:13
@Stas care to elaborate that? – Sean Patrick Floyd Sep 29 '10 at 10:23
show 4 more comments
feedback

Trying to program something or solving simple problems (logic and arithmetic) with Java will be better. Practice coding and also, look at different sources as well, especially Object Oriented codes.

link|improve this answer
feedback

Start implementing and read along during that. If you want to increase your Object Oriented thinking I can recommend Refactoring: Improving the Design of Existing Code from Martin Fowler. It will help you to understand how you can use objects and design patterns to improve your code and make it much more readable.

link|improve this answer
feedback

You can try

Ken Arnold, James Gosling, David Holmes, The Java Programming Language, Fourth Edition, Addison-Wesley Professional, 2005, ISBN 0-321-34980-6

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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