Assuming an experienced software developer fluent in many languages, but having not entered the Java world from the ground floor, which single book related to the huge space that is the Java world would you recommend as a decent overview from which further expertise can be developed?
|
8
|
|
|
|
|
|
I suggest you read the source in src.zip, esp the packages java.* and javax.* |
|||
|
|
|
|
In a similar situation I went for Peter van der Linden's Just Java 2. This book covers the language itself (types, operators, statements), key libraries (e.g. threads, collections, IO, etc.), an introduction to gui programming, databases and JDBC, servlets and jsp, xml. It's still just under 800 pages. I quite like the author's writing style. It's authoritative -- a lot of text to go through, but each chapter ends with a "Some Light Relief" section which contains humorous Java related anecdotes. Wholeheartedly recommended. |
|||
|
|
|
|
Effective Java 2nd Edition(May 2008) |
|||
|
|
|
|
Consider Java in a nutshell It has a chapter "Java syntax from the ground up" for which the description reads "Programmers with substantial experience with languages such as C and C++ should be able to pick up the Java syntax quickly by reading this chapter". Many other chapters are relevant as well. |
|||
|
|
|
|
Lots of answers here point to great books about Java topics (concurrency, best practices, etc), but coming from C/C++ you're going to need to learn two things:
The best books I've found for this are:
At some point rather quickly in your Java progression, you're going to have to start "getting" OO design patterns (especially if you're not used to thinking that way.) These two might help (but ultimately only experience will really do the trick):
|
|||
|
|
|
|
In addition to Effective Java and JCIP. The Java Power Tools book |
|||
|
|
|
|
5 intermediate to advanced I follow and recommend are
Pragmatic Programmer (Thomas,Hunt)
Applying UML and Patterns (Larman)
Computer Algorithms (Baase, Van Gelder) |
|||
|
|
|
|
You might consider reading the Java Language Specification, it is quite readable as specifications go. |
|||
|
|
Agile Java by Langr is excellent if you also want an intro to Test Driven Design and the basic agile approach. |
|||
|
|
|
|
Java Concurrency in Practice is excellent, assuming you're interested in concurrency. It assumes quite a bit of prior knowledge about Java though so as suggested should probably be a companion to some of the other recommendations (TIJ, EJ etc). |
|||
|
|
|
|
Rather than third the excellent recommendations for "Effective" and "Thinking", I'll add "Java Concurrency In Practice" by Brian Goetz. And "Pro Spring" because I think Spring is terrific. |
|||
|
|
My situation was similar to yours. I tried a couple of different books and settled on Thinking in Java by Bruce Eckel. It assumes you know basic programming and some programming language terminology. |
|||
|
|
This may be ancient now days, but I really liked Thinking in Java. It was a number of years ago but was freely available. |
|||
|
|
|
|
Effective Java, second edition. The second edition covers generics and other features added in the 1.5 language revision. |
|||
|
|
|
|
Effective Java. |
||||
|
|
|
Learning Java by Niemeyer and Knudsen. (O'Reilly rules!!!!) |
|||
|
|
|
|
Head first java book by Kathy Siera & Bert Bates.All the books in head first series are very very good. |
|||
|
|
|
|
I'd suggest the free online training courses from Sang Shin on JavaPassion.com with or without homework, just how you need it. |
|||
|
|
|
|
I love this one: http://www.cs.princeton.edu/introcs/home/ |
|||
|
|
|
|
As you have previous programming experience, and thus don't need an introduction to control structures, object orientation etc, I would recommend Java Precisely, which is a very concise reference to most of the Java langauge. |
|||
|
|
|
|
Has anyone read Introduction to Java Programming by Y.Daniel Liang? It's what I use, and it's quite a good book with plenty of detail. |
|||
|
|
|
|
I believe that Java is such a big platform that no single book can cover it all. If you need to learn object orientation, the Head First Java book does it really well. If you need to learn the Java runtime library (which is biiig) I'd suggest wading through the Java Tutorials from Sun. If you need a good cookbook reference http://www.exampledepot.com/ is really nice (and is printed in a book too). The most important thing is, however, experience. Code stuff :) Project Euler http://projecteuler.net/ has a lot of simple and challenging problems and most likely have some you'd like to do. |
|||
|
|
http://java.sun.com/javase/6/docs/api/ That is all. |
|||
|
|
I really liked SCJP Study guide |
|||
|
|
|
|
I think your quest for a SINGLE book would be a little difficult :) Assuming you are an experienced developer, you probably need some resource that gives you a starting point for various things you might be interested in. For this, I would recommend the InformIT Java reference section. And for quick access to java code snippets, I would recommend the excellent Java2S site. |
|||
|
|
|
|
"The Java Programming Language" written by one of its inventors (James Gosling) kind regards, Jos |
|||
|
|
|
|
Just to complete the list, a good first Java book could also be Java How To Program. |
|||
|
|
|
|
Object First With Java : A Practical Introduction Using BlueJ Depending on experience this book is a brilliant introduction to both Java and Object Orientation. |
|||
|
|
|
|
No book is needed. My personal favorite is the java tutorial on http://java.sun.com. That is more than enough. |
|||
