Goodreads helps you keep track of books you want to read.
Start by marking “Ivor Horton's Beginning Java: Java 7 Edition” as Want to Read:
Ivor Horton's Beginning Java: Java 7 Edition
Enlarge cover
Rate this book
Clear rating
Open Preview

Ivor Horton's Beginning Java: Java 7 Edition

4.05  ·  Rating Details ·  21 Ratings  ·  1 Review
Find out why thousands have turned to Ivor Horton for learning Java Ivor Horton's approach is teaching Java is so effective and popular that he is one of the leading authors of introductory programming tutorials, with over 160,000 copies of his Java books sold. In this latest edition, whether you're a beginner or an experienced programmer switching to Java, you'll learn ho ...more
Paperback, 1117 pages
Published September 27th 2011 by Wrox Press (first published December 20th 2004)
More Details... edit details

Friend Reviews

To see what your friends thought of this book, please sign up.

Reader Q&A

To ask other readers questions about Ivor Horton's Beginning Java, please sign up.

Be the first to ask a question about Ivor Horton's Beginning Java

This book is not yet featured on Listopia. Add this book to your favorite list »

Community Reviews

(showing 1-30 of 59)
filter  |  sort: default (?)  |  Rating Details
Michael
Feb 01, 2015 Michael rated it really liked it
Shelves: computer-science
A good overall introduction to Java. Has a lot of software engineering flaws, especially when it comes to commenting and general planning for writing a program. For example, it will have this traditional for(int i=0; i<=MAX; i++){
...some code
(int j = 0; j <=i; j++) {
...more code
}
}
What did that algorithm do? What is i and j supposed to represent. If you were trying to decipher this you should rewrite it differently so it is self-documenting code. There are multiple other strange practices t
...more
Jie He
Jie He marked it as to-read
Aug 14, 2016
Russell Auld
Russell Auld rated it really liked it
Aug 06, 2016
Dr. Peter Bailes
Dr. Peter Bailes rated it really liked it
Jul 24, 2016
Dinko
Dinko marked it as to-read
Jun 21, 2016
Merger
Merger added it
May 15, 2016
Nabeel Beg
Nabeel Beg rated it really liked it
May 04, 2016
Sabrina Seheri
Sabrina Seheri marked it as to-read
Apr 17, 2016
Kris
Kris rated it really liked it
Jan 22, 2016
Jeremy Doan
Jeremy Doan rated it really liked it
Dec 03, 2015
Ankur Pandey
Ankur Pandey rated it really liked it
Nov 19, 2015
Hyperion
Hyperion rated it really liked it
Aug 09, 2015
Adams Korir
Adams Korir rated it really liked it
Jun 17, 2015
Alen
Alen rated it liked it
May 18, 2015
Hobus
Hobus added it
May 06, 2015
Skiamakhos
Skiamakhos rated it really liked it
Mar 06, 2015
Yves
Yves rated it it was amazing
Feb 26, 2015
DaWayne Denmark
DaWayne Denmark marked it as to-read
Dec 28, 2014
Tenzin
Tenzin marked it as to-read
Dec 22, 2014
Saipcan Hasbay
Saipcan Hasbay marked it as to-read
Nov 26, 2014
Fran
Fran marked it as to-read
Mar 28, 2015
Ravi Trivedi
Ravi Trivedi is currently reading it
Sep 20, 2014
Muhammad Asim
Muhammad Asim rated it liked it
Jan 15, 2015
Waseem Mubasher
Waseem Mubasher rated it it was amazing
Aug 14, 2014
« previous 1 next »
There are no discussion topics on this book yet. Be the first to start one »

Goodreads is hiring!

If you like books and love to build cool products, we may be looking for you.
Learn more »
78321
Ivor Horton is self-employed in consultancy and writes programming tutorials. He started out as a mathematician, but shortly after graduating, he was lured into messing about with computers by a well-known manufacturer. Horton's experience at IBM includes programming in most languages (like assembler and high-level languages on a variety of machines), real-time programming, and designing and imple ...more
More about Ivor Horton...

Share This Book



“toString()” 0 likes
“String saying = str1 + str2 + str3 + str4 + str5;   the compiler implements this as: String saying = new StringBuffer().append(str1).append(str2).                                    append(str3).append(str4).                                    append(str5).toString();” 0 likes
More quotes…