Starting Out with Java: Early Objects

Starting Out with Java: Early Objects

5       |  8 Reviews 
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

Tony Gaddis’s accessible, step-by-step presentation helps beginning students understand the important details necessary to become skilled programmers at an introductory level. Gaddis motivates the study of both programming skills and the Java programming language by presenting all the details needed to understand the “how” and the “why”—but never losing sight of the fact that most beginners struggle with this material. His approach is both gradual and highly accessible, ensuring that students understand the logic behind developing high-quality programs. In Starting Out with Java: Early Objects, Gaddis looks at objects—the fundamentals of classes and methods—before covering procedural programming.  As with all Gaddis texts, clear and easy-to-read code listings, concise and practical real-world examples, and an abundance of exercises appear in every chapter.

Table of Contents:
Preface Chapter 1: Introduction to Computers and Java 1.1 Introduction 1.2 Why Program?    1.3 Computer Systems: Hardware and Software 1.4 Programming Languages 1.5 What Is a Program Made of? 1.6 The Programming Process 1.7 Object-Oriented Programming Chapter 2: Java Fundamentals 2.1 The Parts of a Java Program 2.2 The print and println Methods, and the Java API 2.3 Variables and Literals 2.4 Primitive Data Types 2.5 Arithmetic Operators 2.6 Combined Assignment Operators 2.7 Conversion between Primitive Data Types 2.8 Creating Named Constants with final 2.9 The String Class 2.10 Scope 2.11 Comments 2.12 Programming Style 2.13 Reading Keyboard Input 2.14 Dialog Boxes 2.15 Common Errors to Avoid Chapter 3: A First Look at Classes and Objects 3.1 Classes 3.2 More about Passing Arguments 3.3 Instance Fields and Methods 3.4 Constructors 3.5 A BankAccount Class 3.6 Classes, Variables, and Scope 3.7 Packages and import Statements 3.8 Focus on Object-Oriented Design: Finding the Classes and Their Responsibilities 3.9 Common Errors to Avoid Chapter 4: Decision Structures 4.1 The if Statement 4.2 The if-else Statement 4.3 The Payroll Class 4.4 The if-else-if Statement 4.5 Nested if Statements 4.6 Logical Operators 4.7 Comparing String Objects 4.8 More about Variable Declaration and Scope 4.9 The Conditional Operator (Optional) 4.10 The switch Statement 4.11 Formatting Numbers with the DecimalFormat Class 4.12 Focus on Problem Solving: The SalesCommission Class 4.13 The Random Class 4.14 Common Errors to Avoid Chapter 5: Loops and Files   5.1 The Increment and Decrement Operators 5.2 The while Loop 5.3 Using the while Loop for Input Validation 5.4 The do-while Loop 5.5 The for Loop 5.6 Running Totals and Sentinel Values 5.7 Nested Loops 5.8 The break and continue Statements 5.9 Deciding Which Loop to Use 5.10 Introduction to File Input and Output 5.11 Common Errors to Avoid Chapter 6: A Second Look at Classes and Objects 6.1 Static Class Members 6.2 Overloaded Methods 6.3 Overloaded Constructors 6.4 Passing Objects as Arguments to Methods 6.5 Returning Objects from Methods 6.6 The toString Method 6.7 Writing an equals Method 6.8 Methods That Copy Objects 6.9 Aggregation 6.10 The this Reference Variable 6.11 Inner Classes 6.12 Enumerated Types 6.13 Garbage Collection 6.14 Focus on Object-Oriented Design: Class Collaboration 6.15 Common Errors to Avoid   Chapter 7: Arrays and the Array List Class 7.1 Introduction to Arrays 7.2 Processing Array Contents 7.3 Passing Arrays as Arguments to Methods 7.4 Some Useful Array Algorithms and Operations 7.5 Returning Arrays from Methods 7.6 String Arrays 7.7 Arrays of Objects 7.8 The Sequential Search Algorithm 7.9 The Selection Sort and the Binary Search Algorithms 7.10 Two-Dimensional Arrays 7.11 Arrays with Three or More Dimensions 7.12 Command-Line Arguments and Variable-Length Argument Lists 7.13 The ArrayList Class 7.14 Common Errors to Avoid   Chapter 8: Text Processing and Wrapper Classes   8.1 Introduction to Wrapper Classes   8.2 Character Testing and Conversion with the Character Class   8.3 More about String Objects   8.4 The StringBuilder Class   8.5 Tokenizing Strings   8.6 Wrapper Classes for the Numeric Data Types   8.7 Focus on Problem Solving: The TestScoreReader Class   8.8 Common Errors to Avoid Chapter 9: Inheritance   9.1 What Is Inheritance?   9.2 Calling the Superclass Constructor   9.3 Overriding Superclass Methods   9.4 Protected Members   9.5 Classes That Inherit from Subclasses 9.6 The Object Class   9.7 Polymorphism   9.8 Abstract Classes and Abstract Methods   9.9 Interfaces   9.10 Common Errors to Avoid Chapter 10: Exceptions and Advanced File I/O 10.1 Handling Exceptions   10.2 Throwing Exceptions   10.3 Advanced Topics: Binary Files, Random Access Files, and Object Serialization   10.4 Common Errors to Avoid Chapter 11: GUI Applications—Part 1 11.1 Introduction 11.2 Dialog Boxes 11.3 Creating Windows 11.4 Equipping GUI Classes with a main Method 11.5 Layout Managers 11.6 Radio Buttons and Check Boxes 11.7 Borders 11.8 Focus on Problem Solving: Extending the JPanel Class 11.9 Splash Screens 11.10 Using Console Output to Debug a GUI Application 11.11 Common Errors to Avoid Chapter 12: GUI Applications—Part 2 12.1 Read-Only Text Fields 12.2 Lists 12.3 Combo Boxes 12.4 Displaying Images in Labels and Buttons 12.5 Mnemonics and Tool Tips 12.6 File Choosers and Color Choosers 12.7 Menus 12.8 More about Text Components: Text Areas and Fonts 12.9 Sliders 12.10 Look and Feel 12.11 Common Errors to Avoid Chapter 13: Applets and More   13.1 Introduction to Applets 13.2 A Brief Introduction to HTML   13.3 Creating Applets with Swing   13.4 Using AWT for Portability 13.5 Drawing Shapes   13.6 Handling Mouse Events   13.7 Timer Objects 13.8 Playing Audio   13.9 Common Errors to Avoid Chapter 14: Recursion 14.1 Introduction to Recursion 14.2 Solving Problems with Recursion 14.3 Examples of Recursive Methods 14.4 A Recursive Binary Search Method 14.5 The Towers of Hanoi 14.6 Common Errors to Avoid Appendix A Getting Started with Alice Index Appendixes and Case Studies on the Student CD-ROM Appendix B The ASCII/Unicode Characters Appendix C Operator Precedence and Associativity Appendix D Java Key Words Appendix E Installing the JDK and JDK Documentation Appendix F Using the javadoc Utility Appendix G More about the Math Class Appendix H Packages Appendix I Working with Records and Random Access Files Appendix J Using JBuilder 8 Appendix K The QuickSort Algorithm Appendix L Answers to Checkpoints Questions Appendix M Answers to Odd-Numbered Review Questions Case Study 1 The Amortization Class Case Study 2 The PinTester Class Case Study 3 Parallel Arrays Case Study 4 The SerialNumber Class Case Study 5 A Simple Text Editor Application


Best Sellers


Product Details
  • ISBN-13: 9780321497680
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Pearson
  • Depth: 31
  • Height: 202 mm
  • No of Pages: 1008
  • Spine Width: 32 mm
  • Weight: 1736 gr
  • ISBN-10: 0321497686
  • Publisher Date: 05 Apr 2007
  • Binding: SA
  • Edition: 0003-
  • Language: English
  • Series Title: English
  • Sub Title: Early Objects
  • Width: 254 mm


Similar Products

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

Add Photo
Add Photo

Customer Reviews

5       |  8 Reviews 
out of (%) reviewers recommend this product
Top Reviews
Rating Snapshot
Select a row below to filter reviews.
5
4
3
2
1
Average Customer Ratings
5       |  8 Reviews 
00 of 0 Reviews
Sort by :
Active Filters

00 of 0 Reviews
SEARCH RESULTS
1–2 of 2 Reviews
    BoxerLover2 - 5 Days ago
    A Thrilling But Totally Believable Murder Mystery

    Read this in one evening. I had planned to do other things with my day, but it was impossible to put down. Every time I tried, I was drawn back to it in less than 5 minutes. I sobbed my eyes out the entire last 100 pages. Highly recommend!

    BoxerLover2 - 5 Days ago
    A Thrilling But Totally Believable Murder Mystery

    Read this in one evening. I had planned to do other things with my day, but it was impossible to put down. Every time I tried, I was drawn back to it in less than 5 minutes. I sobbed my eyes out the entire last 100 pages. Highly recommend!


Sample text
Photo of
    Media Viewer

    Sample text
    Reviews
    Reader Type:
    BoxerLover2
    00 of 0 review

    Your review was submitted!
    Starting Out with Java: Early Objects
    Pearson Education (US) -
    Starting Out with Java: Early Objects
    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.

    Starting Out with Java: Early Objects

    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