Join Amazon Prime and get unlimited Free One-Day Delivery. Already a member? Sign in.

 

or
Sign in to turn on 1-Click ordering.
 
   
More Buying Choices
26 used & new from £2.35

Have one to sell? Sell yours here
 
   
Understanding Java
 
 

Understanding Java (Paperback)

by Barry Cornelius (Author)
4.5 out of 5 stars See all reviews (4 customer reviews)
RRP: £56.99
Price: £54.14 & this item Delivered FREE in the UK with Super Saver Delivery. See details and conditions
You Save: £2.85 (5%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In stock.
Dispatched from and sold by Amazon.co.uk. Gift-wrap available.

Only 1 left in stock--order soon (more on the way).

Want guaranteed delivery by Saturday, July 18? Choose Express delivery at checkout. See Details
11 new from £44.72 15 used from £2.35
Other Editions: RRP: Our Price: Other Offers:
Paperback £49.99 £47.49 Order it used

Frequently Bought Together

Customers buy this book with The Foundations of Mathematics by Ian Stewart

Understanding Java + The Foundations of Mathematics
Price For Both: £89.13

Show availability and shipping details


Customers Who Bought This Item Also Bought

The Foundations of Mathematics

The Foundations of Mathematics

by Ian Stewart
3.3 out of 5 stars (3)  £34.99
Introducing UNIX and Linux (Grassroots)

Introducing UNIX and Linux (Grassroots)

by Mike Joy
5.0 out of 5 stars (1)  £28.49
Objects First with Java: A Practical Introduction Using BlueJ

Objects First with Java: A Practical Introduction Using BlueJ

by David J. Barnes
4.3 out of 5 stars (19)  £37.58
Principles of Computer Hardware

Principles of Computer Hardware

by Alan Clements
4.3 out of 5 stars (3)  £34.19
The  C Programming Language (2nd Edition)

The C Programming Language (2nd Edition)

by Brian W. Kernighan
4.7 out of 5 stars (96)  £19.17
Explore similar items

Product details

  • Paperback: 704 pages
  • Publisher: Addison Wesley (6 Mar 2001)
  • Language English
  • ISBN-10: 0201711079
  • ISBN-13: 978-0201711073
  • Product Dimensions: 24.3 x 16.1 x 3.4 cm
  • Average Customer Review: 4.5 out of 5 stars See all reviews (4 customer reviews)
  • Amazon.co.uk Sales Rank: 710,813 in Books (See Bestsellers in Books)
  • See Complete Table of Contents

Customers Viewing This Page May Be Interested in These Sponsored Links

  (What is this?)
Java Complexity Analysis
   www.HeadwaySoftware.com    Understand, Measure & Manage Your Architecture with Structure101 
Java Training in London
   www.javaconsult.co.uk    27 - 31 July, Comprehensive 5 day Instructor Led Java Course. £950 
UML/JAVA Model&Generation
   www.modeliosoft.com    Powerful Model Driven tool-100! Complete-Code Model consistency 
  
 

Product Description

Product Description
Understanding Java provides a thorough introduction to the Java programing language and also imparts an understanding of the way things are in Java.The overall aims of Understanding Java by Barry Cornelius are to introduce the main aspects of programming, to explain the constructs available in the Java programming language and to create an appropriate foundation for the construction of large programs. Barry Cornelius has taught courses in Java at the University of Durham since 1996. This book is based on material taught by the author to students that are new to programming.

From the Author
Providing a thorough understanding of Java
Books on Java abound. What makes this book different is that, it not only provides a thorough introduction to the Java programming language, but it also imparts an understanding of the way things are in Java.

The overall aims of the book are to:
(a) introduce the main aspects of programming;
(b) explain the constructs available in the Java programming language;
(c) create an appropriate foundation for the construction of large programs.

I have taught courses in Java at the University of Durham (UK) since 1996. This book is based on material that I have taught to students that are new to programming.

Key features
(a) This book teaches interface declarations at the same time as class declarations.
(b) It suggests that each class should have methods called equals, hashCode, compareTo (if appropriate), toString and a constructor for cloning.
(c) The book demonstrates how to provide a Java program with user interfaces involving components such as buttons, textfields, dialog boxes and menus (using the Swing API).
(d) It uses the Collections API in preference to teaching the student to implement the code for the classic data structures.
(e) The book uses the WWW pages that document the Core APIs.
(f) Each chapter of the book ends with some useful tips for programming and debugging, and a section entitled "curios, controversies and cover-ups".
(g) As well as containing the code of all the examples that appear in the book, the book's website contains the code of a primitive WWW browser written in Java and a set of suggested solutions to some of the exercises.

See all Product Description


Inside This Book (Learn More)
Browse Sample Pages
Front Cover | Copyright | Table of Contents | Excerpt | Index | Back Cover
Search inside this book:

Tag this product

 (What's this?)
Think of a tag as a keyword or label you consider is strongly related to this product.
Tags will help all customers organize and find favorite items.
Your tags: Add your first tag
 

 

Customer Reviews

4 Reviews
5 star:
 (2)
4 star:
 (2)
3 star:    (0)
2 star:    (0)
1 star:    (0)
 
 
 
 
 
Average Customer Review
4.5 out of 5 stars (4 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

 
5 of 6 people found the following review helpful:
4.0 out of 5 stars This book taught me at university, 27 Feb 2001
By A Customer
As a student that this book was on as a lecture course, I found it a great introduction to Java. The book has taught all the basics of the language that have built a good foundation to build upon. Help is given by a number of documented pieces of sample code, and there are plenty of exercises to help assist the learning (I had to do enough of them!) Only thing missing is variables called "foo" and "bar" and the "Hello World!" programme!!! The only thing I didn't like was the variable naming conventions where the name of a type is used with a single letter before it. OK, you know what type your variable is, but it can get confusing if you have multiple instances or can't remember what it does at a late stage in a piece of code. But still a worthwhile book for anyone wanting to learn Java.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
2 of 2 people found the following review helpful:
4.0 out of 5 stars Well worth buying!, 15 Mar 2001
By A Customer
I highly recommend this book to anyone beginning Java, especially if they are also new to programming.

The technical content is accurately thought out, with enough code to deliver the message effectively. For example, Barry proposes a sound case for the use of interfaces, and demonstrates their use in some non-trivial examples.

The book starts slowly, but patience is rewarded. Once the basics are grasped thoroughly you have enough confidence to quickly cover several more intermediate topics. Although this is an introductory text, it is broad enough to leave the reader with sufficient knowledge to tackle harder problems with the help of extra resources such as the Java API reference. Barry succeeds in explaining the why behind the how - I feel the book equips the reader with a knowledge of good programming practice as well as an understanding of the Java syntax, i.e. transferable skills which will be of benefit to languages other than Java.

Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
1 of 1 people found the following review helpful:
5.0 out of 5 stars still relevant!, 23 Nov 2003
By A Customer
As the blurb says, this book was written during teaching in '96. The book is still the core text of the 'Introduction to Programming' module at Durham University in '03, demonstrating just how suitable it is for learning programming from the ground up.

The book is very well structured. If you want to learn concepts at basic level to start with, you can read the main chapters. If you need pragmatic advice on implementation, there is a tips section at the end of every chapter. Finally if you want a much more in-depth understanding of _why_ things are the way they are, each chapter also has a 'curios, controversies and cover-ups' section, explaining the reason why certain design decisions are made, alternatives and further reading.

This book will teach you how to program, the object oriented paradigm _and_ java - each of which are seperate skills, the former two applicable to other languages and situations.

Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)


Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews

5.0 out of 5 stars a review from a student
This is a gripping discourse on the fraught nature of life in the 21st century, as reflected through the innovative use of the metaphore that is the programming language java... Read more
Published on 14 Mar 2001

Only search this product's reviews



Customer Discussions

 Beta (What's this?)
This product's forum (0 discussions)
  Discussion Replies Latest Post
  No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
  [Cancel]

   


Listmania!


Look for similar items by category


Feedback


Fun for Everyone

Christmas Gifts
Achieve over 15,000 RPM with our great range of Powerballs.

Shop the Powerball store

 

More From Barry Cornelius

Programming with Top...

Programming with Top Speed Modula-2

This book provides a gentle yet thorough introduction to the Modula-2... Read more
£39.89

 

Train Hard...Play Hard

Nike, Gola, Converse, and more
Gear up with up to 60% off athletic and outdoor shoes.

Shop now

 

Treat Someone

Amazon.co.uk Gift Certificates--available in any amount from £5 to £500 With an Amazon.co.uk Gift Certificate, you can get them what they want (even if you don't know what that is).

Learn more about Gift Certificates

 
Ad

Where's My Stuff?

Delivery and Returns

Need Help?

Your Recent History

  (What's this?)
You have no recently viewed items or searches.

After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in.

Look to the right column to find helpful suggestions for your shopping session.

Continue Shopping: Top Sellers

amazon.co.uk Amazon Home
International Sites:  United States  |  Germany  |  France  |  Japan  |  Canada  |  China
Business Programs: Sell on Amazon  |  Fulfilment by Amazon  |  Join Associates  |  Join Advantage
Customer Service  |  Help  |  View Basket  |  Your Account
About Amazon.co.uk  |  Careers at Amazon
Conditions of Use & Sale |  Privacy Notice  © 1996-2009, Amazon.com, Inc. and its affiliates