Java Software Solutions
Home > Computing and Information Technology > Computer programming / software engineering > Web programming > Java Software Solutions: Foundations of Program Design plus MyProgrammingLab with Pearson eText -- Access Card Package
Java Software Solutions: Foundations of Program Design plus MyProgrammingLab with Pearson eText -- Access Card Package

Java Software Solutions: Foundations of Program Design plus MyProgrammingLab with Pearson eText -- Access Card Package

|
     0     
5
4
3
2
1




Out of Stock


Notify me when this book is in stock
About the Book

ALERT: Before you purchase, check with your instructor or review your course syllabus to ensure that you select the correct ISBN. Several versions of Pearson's MyLab & Mastering products exist for each title, including customized versions for individual schools, and registrations are not transferable. In addition, you may need a CourseID, provided by your instructor, to register for and use Pearson's MyLab & Mastering products.   Packages Access codes for Pearson's MyLab & Mastering products may not be included when purchasing or renting from companies other than Pearson; check with the seller before completing your purchase.   Used or rental books If you rent or purchase a used book with an access code, the access code may have been redeemed previously and you may have to purchase a new access code.   Access codes Access codes that are purchased from sellers other than Pearson carry a higher risk of being either the wrong ISBN or a previously redeemed code. Check with the seller prior to purchase.   --This package contains Java Software Solutions: Foundations of Program Design, 7e, and MyProgrammingLab with a Pearson eText student access code card for Java Software Solutions. Java Software Solutions teaches a foundation of programming techniques to foster well-designed object-oriented software. Heralded for its integration of small and large realistic examples, this worldwide best-selling text emphasizes building solid problem-solving and design skills to write high-quality programs. MyProgrammingLab is a database of programming exercises correlated to specific Pearson CS1/Intro to Programming textbooks. The exercises are short, focused on a particular programming topic, and are assignable and automatically evaluated. MyProgrammingLab provides immediate, personalized feedback which helps students master the syntax, semantics and basic usage of the programming language, freeing instructors to focus on problem-solving strategies, design and analysis, abstraction, algorithms, and style. Learn more at www.myprogramminglab.com.

Table of Contents:
Preface v Chapter 1 Introduction 1 1.1 Computer Processing 2 Software Categories 3 Digital Computers 4 Binary Numbers 7 1.2 Hardware Components 10 Computer Architecture 11 Input/Output Devices 12 Main Memory and Secondary Memory 13 The Central Processing Unit 17 1.3 Networks 20 Network Connections 20 Local-Area Networks and Wide-Area Networks 22 The Internet 23 The World Wide Web 24 Uniform Resource Locators 25 1.4 The Java Programming Language 26 A Java Program 27 Comments 29 Identifiers and Reserved Words 31 White Space 33 1.5 Program Development 36 Programming Language Levels 36 Editors, Compilers, and Interpreters 38 Development Environments 40 Syntax and Semantics 41 Errors 42 1.6 Object-Oriented Programming 44 Problem Solving 45 Object-Oriented Software Principles 46 Chapter 2 Data and Expressions 57 2.1 Character Strings 58 The print and println Methods 58 String Concatenation 60 Escape Sequences 63 2.2 Variables and Assignment 65 Variables 65 The Assignment Statement 67 Constants 69 2.3 Primitive Data Types 71 Integers and Floating Points 71 Characters 73 Booleans 74 2.4 Expressions 75 Arithmetic Operators 75 Operator Precedence 76 Increment and Decrement Operators 80 Assignment Operators 81 2.5 Data Conversion 83 Conversion Techniques 85 2.6 Interactive Programs 87 The Scanner Class 87 2.7 Graphics 92 Coordinate Systems 92 Representing Color 94 2.8 Applets 95 Executing Applets Using the Web 98 2.9 Drawing Shapes 99 The Graphics Class 99 Software Failure: NASA Mars Climate Orbiter and Polar Lander 111 Chapter 3 Using Classes and Objects 113 3.1 Creating Objects 114 Aliases 116 3.2 The String Class 118 3.3 Packages 122 The import Declaration 124 3.4 The Random Class 126 3.5 The Math Class 129 3.6 Formatting Output 132 The NumberFormat Class 132 The DecimalFormat Class 134 The printf Method 135 3.7 Enumerated Types 138 3.8 Wrapper Classes 141 Autoboxing 143 3.9 Components and Containers 143 Frames and Panels 144 3.10 Nested Panels 148 3.11 Images 151 Chapter 4 Writing Classes 159 4.1 Classes and Objects Revisited 160 4.2 Anatomy of a Class 162 Instance Data 167 UML Class Diagrams 167 4.3 Encapsulation 169 Visibility Modifiers 170 Accessors and Mutators 171 4.4 Anatomy of a Method 172 The return Statement 174 Parameters 175 Local Data 175 Bank Account Example 176 4.5 Constructors Revisited 181 4.6 Graphical Objects 182 4.7 Graphical User Interfaces 191 4.8 Buttons 192 4.9 Text Fields 196 Software Failure: Denver Airport Baggage Handling System 205 Chapter 5 Conditionals and Loops 207 5.1 Boolean Expressions 208 Equality and Relational Operators 209 Logical Operators 210 5.2 The if Statement 213 The if-else Statement 216 Using Block Statements 219 Nested if Statements 223 5.3 Comparing Data 226 Comparing Floats 226 Comparing Characters 227 Comparing Objects 228 5.4 The while Statement 230 Infinite Loops 234 Nested Loops 236 The break and continue Statements 239 5.5 Iterators 241 Reading Text Files 242 5.6 The ArrayList Class 245 5.7 Determining Event Sources 248 5.8 Check Boxes and Radio Buttons 251 Check Boxes 251 Radio Buttons 255 Software Failure: Therac-25 267 Chapter 6 More Conditionals and Loops 269 6.1 The switch Statement 270 6.2 The Conditional Operator 274 6.3 The do Statement 275 6.4 The for Statement 279 The for-each Loop 282 Comparing Loops 284 6.5 Drawing with Loops and Conditionals 285 6.6 Dialog Boxes 291 Chapter 7 Object-Oriented Design 301 7.1 Software Development Activities 302 7.2 Identifying Classes and Objects 303 Assigning Responsibilities 305 7.3 Static Class Members 305 Static Variables 306 Static Methods 306 7.4 Class Relationships 310 Dependency 310 Dependencies Among Objects of the Same Class 310 Aggregation 316 The this Reference 320 7.5 Interfaces 322 The Comparable Interface 327 The Iterator Interface 328 7.6 Enumerated Types Revisited 329 7.7 Method Design 332 Method Decomposition 333 Method Parameters Revisited 338 7.8 Method Overloading 343 7.9 Testing 345 Reviews 346 Defect Testing 346 7.10 GUI Design 349 7.11 Layout Managers 350 Flow Layout 352 Border Layout 356 Grid Layout 359 Box Layout 361 7.12 Borders 365 7.13 Containment Hierarchies 369 Software Failure: 2003 Northeast Blackout 377 Chapter 8 Arrays 379 8.1 Array Elements 380 8.2 Declaring and Using Arrays 381 Bounds Checking 384 Alternate Array Syntax 389 Initializer Lists 389 Arrays as Parameters 390 8.3 Arrays of Objects 392 8.4 Command-Line Arguments 402 8.5 Variable Length Parameter Lists 404 8.6 Two-Dimensional Arrays 408 Multidimensional Arrays 412 8.7 Polygons and Polylines 413 The Polygon Class 416 8.8 Mouse Events 418 8.9 Key Events 427 Software Failure: LA Air Traffic Control 441 Chapter 9 Inheritance 443 9.1 Creating Subclasses 444 The protected Modifier 447 The super Reference 450 Multiple Inheritance 453 9.2 Overriding Methods 455 Shadowing Variables 457 9.3 Class Hierarchies 458 The Object Class 460 Abstract Classes 461 Interface Hierarchies 463 9.4 Visibility 463 9.5 Designing for Inheritance 466 Restricting Inheritance 467 9.6 The Component Class Hierarchy 468 9.7 Extending Adapter Classes 471 9.8 The Timer Class 475 Software Failure: Ariane 5 Flight 501 485 Chapter 10 Polymorphism 487 10.1 Late Binding 488 10.2 Polymorphism via Inheritance 489 10.3 Polymorphism via Interfaces 502 10.4 Sorting 504 Selection Sort 505 Insertion Sort 511 Comparing Sorts 512 10.5 Searching 513 Linear Search 513 Binary Search 515 Comparing Searches 519 10.6 Designing for Polymorphism 519 10.7 Event Processing 521 10.8 File Choosers 522 10.9 Color Choosers 525 10.10 Sliders 527 Chapter 11 Exceptions 537 11.1 Exception Handling 538 11.2 Uncaught Exceptions 539 11.3 The try-catch Statement 540 The finally Clause 544 11.4 Exception Propagation 545 11.5 The Exception Class Hierarchy 549 Checked and Unchecked Exceptions 552 11.6 I/O Exceptions 553 11.7 Tool Tips and Mnemonics 557 11.8 Combo Boxes 564 11.9 Scroll Panes 569 11.10 Split Panes 572 Chapter 12 Recursion 583 12.1 Recursive Thinking 584 Infinite Recursion 584 Recursion in Math 585 12.2 Recursive Programming 586 Recursion vs. Iteration 589 Direct vs. Indirect Recursion 589 12.3 Using Recursion 590 Traversing a Maze 591 The Towers of Hanoi 596 12.4 Recursion in Graphics 601 Tiled Pictures 601 Fractals 604 Chapter 13 Collections 617 13.1 Collections and Data Structures 618 Separating Interface from Implementation 618 13.2 Dynamic Representations 619 Dynamic Structures 619 A Dynamically Linked List 620 Other Dynamic List Representations 625 13.3 Linear Data Structures 627 Queues 627 Stacks 628 13.4 Non-Linear Data Structures 631 Trees 631 Graphs 632 13.5 The Java Collections API 634 Generics 634 Appendix A Glossary 641 Appendix B Number Systems 665 Appendix C The Unicode Character Set 673 Appendix D Java Operators 677 Appendix E Java Modifiers 683 Appendix F Java Coding Guidelines 687 Appendix G Java Applets 693 Appendix H Regular Expressions 695 Appendix I Javadoc Documentation Generator 697 Appendix J The PaintBox Project 703 Appendix K GUI Events 715 Appendix L Java Syntax 719 Appendix M The Java Class Library 733 Appendix N Answers to Self-Review Questions 735 Index 789


Best Sellers


Product Details
  • ISBN-13: 9780132760775
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Pearson
  • Language: English
  • ISBN-10: 0132760770
  • Publisher Date: 28 Nov 2012
  • Binding: SA
  • Sub Title: Foundations of Program Design plus MyProgrammingLab with Pearson eText -- Access Card Package


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
Java Software Solutions: Foundations of Program Design plus MyProgrammingLab with Pearson eText -- Access Card Package
Pearson Education (US) -
Java Software Solutions: Foundations of Program Design plus MyProgrammingLab with Pearson eText -- Access Card Package
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 Software Solutions: Foundations of Program Design plus MyProgrammingLab with Pearson eText -- Access Card Package

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!