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
by
Ivor Horton
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)
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)

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
...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
There are no discussion topics on this book yet.
Be the first to start one »
Goodreads is hiring!

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
No trivia or quizzes yet. Add some now »
“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…