54%
Java Concepts

Java Concepts

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

Think like a programmer! Now updated to integrate Java 5.0, Cay Horstmann's Java Concepts, Fourth Edition provides an up--to--date, highly effective, and accessible introduction to the Java language and a solid grounding in fundamental computer science concepts. Drawing on his many years of experience as a career programmer and teacher, Horstmann will inspire you to think like a programmer and develop the problem--solving skills you need to succeed in your course and future career. Features Updated coverage to integrate Java 5.0. The text can still be used with older versions of Java. An approach that goes beyond language syntax to focus on computer science concepts and problem solving. The text encourages you to think as a problem solver and equips you with the tools you need to design efficient and successful programs. Review of Chapters 2 and 3 shows a gradual and student--friendly approach that is a Horstmann trademark. Horstmann provides extras like Quality Tips and Productivity Hints that give the user an inside track on the material. As always, there is a strong emphasis on the pragmatic and practical aspects of programming. Carefully developed problems and easy--to--understand examples. Java Concepts is loaded with exercises and examples, and you can find the code for examples online. The Programming Style Guide. Available online, the Programming Style Guide helps you develop a consistent style for all of your programming projects. New to this edition is an accessible and colorful text layout that helps you find the information that you need when you need it. Other books by Cay Horstmann Big Java, Second Edition, 0--471--70615--9 Object--Oriented Design and Patterns, 0--471--31966--X Big C++ (with Timothy Budd), 0--471--47063--5 Computing Concepts with C++ Essentials, Third Edition, 0--471--16437--2

Table of Contents:
Preface.Special Features.Chapter 1. Introduction.1.1 What is programming.1.2 The Anatomy of a Computer.1.3 Translating Human Readable Programs to Machine Codes.1.4 The Java Programming Language.1.5 Becoming Familiar with Your Computer.1.6 Compiling a Simple Program.1.7 Errors.1.8 The Compilation Project.Chapter 2. Using Objects.2.1 Types and Variables.2.2 The Assignment Operator.' 2.3 Objects, Classes and Methods.2.4 Methods, Parameters and Return Values.2.5 Number Types.2.6. Constructing Objects.2.7 Accessor and Mutator Methods.2.8 Implementing a Test Program.2.9 The API Documentation.2.10 Object References.Chapter 3. Implementing Classes.3.1 Black Boxes.3.2 Design and Public Interface of a Class.3.3 Commenting the Public Interface.3.4 Instance Fields.3.5 Implementing Constructors and Methods.3.6 Testing a Class.3.7 Categories of Variables.3.8 Implicit and Explicit Method Parameters.Chapter 4. Fundamental Data Types.4.1 Number Types.4.2 Constants.4.3 Assignment, Increment, and Decrement.4.4 Arithmetic Operations and Mathematical Functions.4.5 Calling Static Methods.4.6 Strings.4.7 Reading Input.Chapter 5. Programming Graphics (Optional).5.1 Frame Windows.5.2 Drawing Shapes.5.3 Graphical Shapes.5.4 Colors.5.5 Drawing Complex Shapes.5.6 Reading the Text Input.5.7 Comparing Visual and Numerical Information.Chapter 6. Decisions.6.1 The if Statement.6.2 Comparing Values.6.3 Multiple Alternatives.6. 4 Using Boolean Expressions.Chapter 7. Iteration.7.1 while Loops.7.2 for loops7.3 Nested Loops7.4 Processing Sentinel Values.7.5 Random Numbers and Stimulations.Chapter 8. Arrays and Array Lists.8.1 Arrays.8.2 Arrays Lists.8.3 Wrappers and Auto-Boxing.8.4 The Generalized for Loop.8.5 Simple Array Algorithms.8.6 Two-Dimensional Arrays.8.7 Copying Arrays.Chapter 9. Designing Classes.9.1 Choosing Classes.9.2 Cohesion and Coupling.9.3 Accessors, Mutators, and Immutable Classes.9.4 Side Effects.9.5 Preconditions and Postconditions.9.6 Static Methods.9.7 Static Fields.9.8 Scope.9.9 Packages.Chapter 10. Testing and Debugging.10.1 Unit Tests.10.2 Providing Test Input.10.3 Test Case Evaluation.10.4 Regression Testing and Test Coverage.10.5 Logging.10.6 Using a Debugger.10.7 A Sample Debugging Session.Chapter 11. Interfaces and Polymorphism.11.1 Using Interfaces of Code Reuse.11.2 Converting Between Class and Interface Types.11.3 Polymorphism.11.4 Using Interfaces for Callbacks.11.5 Inner Classes.11.6 Processing Timer Events.11.7 Accessing Surrounding Variables.Chapter 12. Event Handling (Optional).12.1 Events, Event Sources and Event Listeners.12.2 Building Applications with Buttons.12.3 Processing Text Input.12.4 Mouse Events.Chapter 13. Inheritance.13.1 An Introduction to Inheritance.13.2 Inheritance Hierarchies.13.3 Inheritance Instance Fields and Methods.13.4 Subclass Construction.13.5 Converting between Subclass and Superclass Types.13.6 Polymorphism.13.7 Access Control.13.8 Object: The Cosmic Superclass.Chapter 14. Graphical User Interfaces.14.1 Using Inheritance to Customize Frames.14.2 Layout Management.14.3 Choices.14.4 Menus.14.5 Text Areas.14.6 Exploring the Swing Documentation.Chapter 15 Exception Handling.15.1 Throwing Exceptions.15.2 Checked and Unchecked Exceptions.15.3 Catching Exceptions.15.4 The finally Clause.15.5 Designing Your Own Exception Types.15.6 Case Study: A Complete Example.Chapter 16. Files and Streams.16.1 Reading and Writing Text Files.16.2 Text and Binary Formats.16.3 An Encryption Program.16.4 Random Access.16.5 Object Streams.Chapter 17. Object Oriented Design.17.1 The Software Life Cycle.17.2 Discovering Classes.17.3 Relationship Between Classes.17.4 Case Study: Printing an Invoice.17.5 Case Study: An Automatic Teller Machine.Chapter 18. Recursion.18.1 Triangle Numbers.18.2 Permutations.18.3 Recursive Helper Methods.18.4 Mutual Recursions.18.5 The Efficiency of Recursion.Chapter 19. Sorting and Searching.19.1 Selection Sort.19.2 Profiling the Selection Sort Algorithm.19.3 Analyzing the Performance of the Selection Sort Algorithm.19.4 Merge Sort.19.5 Analyzing and Merge Sort Algorithm.19.6 Searching.19.7 Binary Search.19.8 Sorting Real Data.Chapter 20. An Introduction to Data Structures.20.1 Using Linked Lists.20.2 Implementing Linked Lists.20.3 Abstract and Concrete Data Types.20.4 Stacks and Queues.Chapter 21. Advanced Data Structures.21.1 Sets.21.2 Maps.21.3 Hash Tables.21.4 Computing Hash Codes.21.5 Binary Search Trees.21.6 Tree Traversal.21.7 Using Tree Sets and Tree Maps.21.8 Priority Queues.21.9 Heaps.21.10 The Heapsort Algorithm.Chapter 22. Generic Programming.22.1 Type Variables.22.2 Implementing Generic Classes.22.3 Generic Methods.22.4 Constraining Type Variables.22.5 Raw Types.Appendix A: Java Language Coding Guidelines.Appendix B: The Basic Latin and Latin-1 Subsets of Unicode.Appendix C: The Java Library.Appendix D: Adapting Java 5 Programs to Older Compilers.Appendix E: Java Syntax Summary.Appendix F: Java Operator Summary.Appendix G: Java Keyword Summary.Appendix H: Metric Conversion Factors.Appendix I: HTML Summary.Appendix J: Tool Summary.Appendix K: Javadoc Summary.Appendix L: Number Systems.Appendix M: Bit and Shift Operations.Appendix N: UML Summary.Glossary.Index.Illustration Credits.


Best Sellers


Product Details
  • ISBN-13: 9780471697046
  • Publisher: John Wiley and Sons Ltd
  • Publisher Imprint: John Wiley & Sons Inc
  • Edition: Revised edition
  • Language: English
  • Returnable: N
  • Width: 190 mm
  • ISBN-10: 0471697044
  • Publisher Date: 04 Jan 2005
  • Binding: Paperback
  • Height: 238 mm
  • No of Pages: 992
  • Weight: 1467 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Java Concepts
John Wiley and Sons Ltd -
Java Concepts
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Java Concepts

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA