Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Java Programming

Thinking In Java 3rd Edition Available Online 28

slothdog writes "Bruce Eckel has made the new 3rd edition of Thinking in Java (and other books) available online. This is a more introductory-level book, although there is a work in progress on Thinking in Patterns and one on the way entitled Thinking in Enterprise Java. All in all, an excellent book for someone not yet familiar with Java. Kudos to Bruce for making it available for download!"
This discussion has been archived. No new comments can be posted.

Thinking In Java 3rd Edition Available Online

Comments Filter:
  • Now I'll have an excuse for reading my PDA in my Java class.
  • LaTeX (Score:1, Flamebait)

    by EvilJello ( 577315 )
    Someone teach this guy some LaTeX!
  • 3 or 4 years ago... (Score:4, Interesting)

    by Pengo ( 28814 ) on Wednesday December 04, 2002 @03:50PM (#4812549) Journal
    3-4 years ago I downloaded the first online revision of his ebook. I printed out all 200+ pages and went through it one chapter at a time. After about 2-3 weeks, I was working away in JAVA and that book was probably one of the more influential elements in my career as a programmer. I am glad that Bruce has made his material free for use. I have since purchased copies of thinking in JAVA and thinking in C++. The Thinking in JAVA book has probably taught me more about OOP than any other book I have read on the subject.

    I recommend that books to anyone that would like to venture into the wild world of JAVA, whether you be an experienced programmer or someone who would like to be one some day. :) Bruce has a way of putting his concepts and lessons across in ways that are comprehensible and easily graspable. At the time when I picked up that book, I had considered JAVA as a language to add to my plate, but found the task of teaching myself JAVA quite daunting. Since I have been working exclusively with JAVA and am still learning new things all the time.
    • Please stop capitalizing "JAVA", J-a-v-a are not initials and should not be capitalized, just like Unix should not be capitalized.

      Thanks.
    • by bay43270 ( 267213 ) on Wednesday December 04, 2002 @04:04PM (#4812668) Homepage
      This is a great book for those who already have a background in C or C++ and anyone who already knows Java and wants to understand the language and it's history a bit better. It's easy to read and explains more about how to wrap your mind around Java than how to program in it.

      For this reason I DO NOT recommend this book to beginning programmers, programmers transitioning from COBOL and 4th gen languages or anyone who wants to start writing Java tomorrow. This is a book about understanding Java... it's not good for those who want to learn syntax or jump in to their first program.

      Our company was making a transition from an old character based system to a Swing/J2EE system. I made the mistake of suggesting this book for use in the classroom. Our programmers were simply too impatient for it. All of our advanced programmers loved it and recommend it, but those who just wanted to join the project quickly (most of them, in our case) preferred Sun's Java Tutorial series.
      • by John Harrison ( 223649 ) <johnharrison AT gmail DOT com> on Thursday December 05, 2002 @11:33AM (#4818375) Homepage Journal
        Two years ago I was a consultant at a company porting a Vax based system to Java. Many of their developers were new to Java and needed constant hand-holding.

        After a few weeks of this I made a CD with the JavaDocs and Thinking in Java v2 on it. When they came with a question I would give them the CD and told them to copy it onto their computer. I showed them what the JavaDocs were useful for and showed them how Thinking in Java not only had great examples but explained the hows and whys of the language. This helped them understand how what they were doing made sense in a deeper way than if they had just read the example code.

        The book was a big hit. It saved me a ton of time having to explain things and helped those guys become better programmers.

        That said, v2 was much better than the beta version that I cut my teeth on way back when. Since it wasn't available in printed form at the time the professor made everbody buy a version she had printed out. Too bad she had repaginated it such that the page numbers in the index no longer mapped to the pages in the book.

  • by avdi ( 66548 ) on Wednesday December 04, 2002 @04:43PM (#4813123) Homepage

    I bought this when I decided to learn Java, on the advice of numerous online recommendations, and dutifully slogged through it for a few months. Finally I gave up, and later bought The Java Programming Language [amazon.com] and learned everything I needed to know in a couple of weeks. For those who understand basic OO principles, and have at least one language under their belt already, TiJ is extremely slow going. The book is cluttered up with lengthy, tedious, contrived examples that sometimes take up several pages of often highly repetative code. Rather than use code snippets to illustrate new concepts, this book tends to repeat entire programs over and over again with just a few lines changed. Combine this with an enourmous font that causes the code to actually be less readable because so many lines have to be truncated and you have a book that's far thicker than it needs to be.

    Bruce himself is a somewhat dubious source for programming know-how, having something of a reputation for jumping onto each passing development fad with a passion and then discarding it with a sniff when the next shiny object comes along. He's also notorious in the Ruby community for publishing a scathing, and completely innaccurate, critique of the Ruby language despite admitting that he hadn't bothered to learn much about it. This is highly unproffessional behavior IMHO, and has colored my perception of anything he's said since.

    I do recommend TiJ for a casual programmer who has decided that Java is going to be their introduction to OO programming. It does a good job of explaining OO principles and demonstrating how they can be implemented in Java.

    • You don't only read the book, you compile every source code with the book and run the code as you read it.

      That way you really understand the code. And is fun too.

      About the jumping reputation, well that is true, and I still read their C++ books way more than I will read their Java or something else books ever. I would like an update to te C++ series. But that's dreaming I know.
  • Thinking in C#? (Score:4, Interesting)

    by Schnapple ( 262314 ) <tomkidd.gmail@com> on Wednesday December 04, 2002 @05:42PM (#4813751) Homepage
    A while back I checked out his site and he had given someone the rights to translate Thinking in Java (2nd Edition, I presume), into Thinking in C#. It was available for download was a "Version 0.1" where any code in red was still Java - black code was translated into C#. I'm not sure how much text was neccessary to translate, but it was essentially "ported" to C#.

    Apparently at the beginning of November they changed it to where instead of being a free unrestricted download it's a $10 unprintable PDF. This was done since universities were cancelling their orders for the book since students could print it out (using university resources no less), which they decided was unfair to them (the author/publisher). The book itself isn't out until February.

    Now here's the question I have - what does this say about C# or Java that the universities (presumably) aren't doing this same thing with Java? They don't mind that anyone can download TiJ for free and print it out, but they do mind for TiC#? In his FAQ Eckel goes on about how it's a good thing professors can use his book in classes before it comes out for real - now that's a bad thing?

    I guess the main thing is that it smacks of the same sort of drama that surrounded the University of Waterloo and their teaching of C# (they were to recieve $1M from Microsoft, but then Waterloo decided to stew on the idea for a year).

    • Re:Thinking in C#? (Score:3, Insightful)

      by alyandon ( 163926 )
      Contrary to popular belief, C# is not a straight clone of Java although the syntax of the language is very similar.

      Translating a book about Java development concepts w/examples to C# makes about as much sense translating a book about Objective C to C++. You really aren't going to pick up on any of the special features/nuances of the language.
      • Re:Thinking in C#? (Score:3, Interesting)

        by Nicolay77 ( 258497 )
        I've read their books about C++ and Java in parallel and I can tell you: IT DOES MAKE SENSE.

        It's even the other way around, this way you can really understand all the special features/nuances of the language.

        Of course some chapters appear/dissapear completely, as some concepts has no translation. (STL in C++ and Threads in Java).

        But it really makes sense.
        • I've read their books about C++ and Java in parallel

          You read Thinking in C++ and Thinking in Java at the same time, and your head didn't explode? Amazing! ;)

egrep -n '^[a-z].*\(' $ | sort -t':' +2.0

Working...