Big Java: Late Objects

Big Java: Late Objects

          
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

Big Java: Late Objects is a comprehensive introduction to Java and computer programming, which focuses on the principles of programming, software engineering, and effective learning. It is designed for a two-semester first course in programming for computer science students. Using an innovative visual design that leads readers step-by-step through intricacies of Java programming, Big Java: Late Objects instills confidence in beginning programmers and confidence leads to success.

Table of Contents:
Preface v Special Features xxvi Chapter 1 INTRODUCTION 1 1.1 Computer Programs 2 1.2 The Anatomy of a Computer 3 1.3 The Java Programming Language 5 1.4 Becoming Familiar with Your Programming Environment 8 1.5 Analyzing Your First Program 12 1.6 Errors 15 1.7 Problem Solving: Algorithm Design 16 Chapter 2 FUNDAMENTAL DATA TYPES 29 2.1 Variables 30 2.2 Arithmetic 41 2.3 Input and Output 48 2.4 Problem Solving: First Do It By Hand 57 2.5 Strings 59 Chapter 3 DECISIONS 81 3.1 The if Statement 82 3.2 Comparing Numbers and Strings 88 3.3 Multiple Alternatives 96 3.4 Nested Branches 100 3.5 Problem Solving: Flowcharts 105 3.6 Problem Solving: Test Cases 108 3.7 Boolean Variables and Operators 111 3.8 Application: Input Validation 116 Chapter 4 LOOPS 139 4.1 The while Loop 140 4.2 Problem Solving: Hand-Tracing 147 4.3 The for Loop 150 4.4 The do Loop 156 4.5 Application: Processing Sentinel Values 158 4.6 Problem Solving: Storyboards 162 4.7 Common Loop algorithms 165 4.8 Nested Loops 172 4.9 Application: Random Numbers and Simulations 176 Chapter 5 METHODS 201 5.1 Methods as Black Boxes 202 5.2 Implementing Methods 204 5.3 Parameter Passing 207 5.4 Return Values 210 5.5 Methods Without Return Values 214 5.6 Problem Solving: Reusable Methods 215 5.7 Problem Solving: Stepwise Refinement 218 5.8 Variable Scope 225 5.9 Recursive Methods (Optional) 228 Chapter 6 ARRAYS AND ARRAY LISTS 249 6.1 Arrays 250 6.2 The Enhanced for Loop 257 6.3 Common Array Algorithms 258 6.4 Using Arrays with Methods 268 6.5 Problem Solving: Adapting Algorithms 272 6.6 Problem Solving: Discovering Algorithms by Manipulating Physical Objects 279 6.7 Two-Dimensional Arrays 282 6.8 Array Lists 289 Chapter 7 INPUT/OUTPUT AND EXCEPTION HANDLING 317 7.1 Reading and Writing Text files 318 7.2 Text Input and Output 323 7.3 Command Line Arguments 330 7.4 Exception Handling 337 7.5 Application: Handling Input Errors 347 Chapter 8 OBJECTS AND CLASSES 361 8.1 Object-Oriented Programming 362 8.2 Implementing a Simple Class 364 8.3 Specifying the Public Interface of a Class 367 8.4 Designing the Data representation 371 8.5 Implementing Instance Methods 372 8.6 Constructors 375 8.7 Testing a Class 380 8.8 Problem Solving: Tracing Objects 386 8.9 Problem Solving: Patterns for Object Data 388 8.10 Object References 395 8.11 Static Variables and Methods 400 Chapter 9 INHERITANCE AND INTERFACES 415 9.1 Inheritance Hierarchies 416 9.2 Implementing Subclasses 420 9.3 Overriding Methods 424 9.4 Polymorphism 430 9.5 Object: The Cosmic Superclass 441 9.6 Interface Types 448 Chapter 10 GRAPHICAL USER INTERFACES 465 10.1 Frame Windows 466 10.2 Events and Event Handling 470 10.3 Processing Text Input 481 10.4 Creating Drawings 487 Chapter 11 ADVANCED USER INTERFACES 507 11.1 Layout Management 508 11.2 Choices 510 11.3 Menus 521 11.4 Exploring the Swing Documentation 528 11.5 Using Timer events for Animations 533 11.6 Mouse Events 536 Chapter 12 OBJECT-ORIENTED DESIGN 549 12.1 Classes and Their Responsibilities 550 12.2 Relationships Between Classes 554 12.3 Application: Printing an Invoice 562 12.4 Packages 574 Chapter 13 RECURSION 585 13.1 Triangle Numbers Revisited 586 13.2 Problem Solving: Thinking Recursively 590 13.3 Recursive Helper Methods 594 13.4 The Efficiency of Recursion 596 13.5 Permutations 601 13.6 Mutual Recursion 606 13.7 Backtracking 612 Chapter 14 SORTING AND SEARCHING 627 14.1 Selection Sort 628 14.2 Profiling the Selection Sort Algorithm 631 14.3 Analyzing the Performance of the Selection Sort Algorithm 634 14.4 Merge Sort 639 14.5 Analyzing the Merge Sort Algorithm 642 14.6 Searching 646 14.7 Problem Solving: Estimating the Running Time of an Algorithm 651 14.8 Sorting and Searching in the Java Library 656 Chapter 15 THE JAVA COLLECTIONS FRAMEWORK 669 15.1 An Overview of the Collections Framework 670 15.2 Linked Lists 672 15.3 Sets 679 15.4 Maps 684 15.5 Stacks, Queues, and Priority Queues 690 15.6 Stack and Queue Applications 693 Chapter 16 BASIC DATA STRUCTURES 713 16.1 Implementing Linked Lists 714 16.2 Implementing Array Lists 728 16.3 Implementing Stacks and Queues 733 16.4 Implementing a Hash Table 739 Chapter 17 TREE STRUCTURES 759 17.1 Basic Tree Concepts 760 17.2 Binary Trees 764 17.3 Binary Search Trees 769 17.4 Tree Traversal 778 17.5 Red-Black Trees 784 17.6 Heaps 791 17.7 The Heapsort Algorithm 802 Chapter 18 GENERIC CLASSES 817 18.1 Generic Classes and Type Parameters 818 18.2 Implementing Generic Types 819 18.3 Generic Methods 823 18.4 Constraining Type Parameters 825 18.5 Type Erasure 829 Chapter 18 STREAMS AND BINARY INPUT/OUTPUT 839 19.1 Readers, Writers, and Streams 840 19.2 Binary Input and Output 841 19.3 Random Access 845 19.4 Object Streams 851 Chapter 20 MULTITHREADING (WEB ONLY) 20.1 Running Threads 20.2 Terminating Threads 20.3 Race Conditions 20.4 Synchronizing Object Access 20.5 Avoiding Deadlocks 20.6 Application: Algorithm Animation Chapter 21 INTERNET NETWORKING (WEB ONLY) 21.1 The Internet Protocol 21.2 Application Level Protocols 21.3 A Client Program 21.4 A Server Program 21.5 URL Connections Chapter 22 RELATIONAL DATABASES (WEB ONLY) 22.1 Organizing Database Information 22.2 Queries 22.3 Installing a Database 22.4 Database Programming in Java 22.5 Application: Entering an Invoice Chapter 23 XML (WEB ONLY) 23.1 XML Tags and Documents 23.2 Parsing XML Documents 23.3 Creating XML Documents 23.4 Validating XML Documents Chapter 24 WEB APPLICATIONS (WEB ONLY) 24.1 The Architecture of a Web Application 24.2 The Architecture of a JSF Application 24.3 Javabeans Components 24.4 Navigation Between Pages 24.5 JSF Components 24.6 A Three-Tier Application APPENDICES APPENDIX A THE BASIC LATIN AND LATIN-1 SUBSETS OF UNICODE 861 APPENDIX B JAVA OPERATOR SUMMARY 865 APPENDIX C JAVA RESERVED WORD SUMMARY 867 APPENDIX D THE JAVA LIBRARY 869 APPENDIX E JAVA SYNTAX SUMMARY 913 APPENDIX F HTML SUMMARY 925 APPENDIX G TOOL SUMMARY 931 APPENDIX H JAVADOC SUMMARY 933 APPENDIX I NUMBER SYSTEMS 935 APPENDIX J BIT AND SHIFT OPERATIONS 941 APPENDIX K UML SUMMARY 943 APPENDIX L JAVA LANGUAGE CODING GUIDELINES 947 GLOSSARY 955 INDEX 969 CREDITS 1011


Best Sellers


Product Details
  • ISBN-13: 9781118087886
  • Publisher: John Wiley & Sons Inc
  • Publisher Imprint: John Wiley & Sons Inc
  • Depth: 38
  • Height: 252 mm
  • No of Pages: 1056
  • Series Title: English
  • Sub Title: Late Objects
  • Width: 198 mm
  • ISBN-10: 1118087887
  • Publisher Date: 20 Feb 2012
  • Binding: Paperback
  • Edition: Reprint
  • Language: English
  • Returnable: N
  • Spine Width: 38 mm
  • Weight: 1769 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
Big Java: Late Objects
John Wiley & Sons Inc -
Big Java: Late 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.

Big Java: Late 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