43%
On to Java

On to Java

          
5
4
3
2
1

Available


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.
Quantity:
Add to Wishlist

About the Book

Learn the exciting language for the World Wide Web This book is written in the clear and concise style that has made Winston's C, C++, and Lisp books popular among programmers who want to add new languages to their repertoires. Using this book, you learn Java quickly and effectively, and you learn why Java is the language of choice for writing programs for the World Wide Web.The Knowledge You Need Each section adds new capabilities to a short, yet representative Java program. As you see the program evolve, you learn how to: * Define abstract classes and abstract methods * Design class hierarchies * Use compilation units and packages * Use interfaces to impose requirements * Use the model-view approach to interface design * Access applets from network viewers * Use threads to implement dynamic applets * Design applets using layout managers Winston's proven approach: * Based on extensive teaching experience * Features easily digested segments * Illustrates ideas via short, yet complete programs * Answers your natural questions in a natural order * Stresses principles of good programming practice * Recapitulates key points as if-then rules * Shows you how to write programs right away In producing On To Java, PostScript files were printed on film,which was used to produce the copper plates that are used in the printingpress.When the PostScript files were sent to the film producer, one of theirprograms failed to clear a character table. Consequently,certain charactersthat appear in programs were replaced by spaces.This problem seems limited primarily to pages in the ranges 64--77 and 163--171. 020149826XB04062001

Table of Contents:
1. How This Book Teaches You the Language. Why you Should Learn Java. Object-Oriented Programming Languages. Java's Network-Oriented Features. Programming Cliches. 2. How to Compile and Run a Simple Program. Compiling and Executing. The Display Statement and Strings. Case Sensitivity and Blank insensitivity. Operators and Operands. 3. How to Declare Variables. Data Types and Variable Declarations. Initialization and Assignment. Integral and Floating-Point Data Types. 4. How to Write Arithmetic Expressions. Arithmetic. Precedence and Association. Binary and Unary Operators. Type Casting. 5. How to Define Simple Methods. Defining Methods. Calling and Returning From Methods. Arguments, Parameters, and Values. Method Overloading in Multiple Classes. Method Overloading in One lass. 6. How to Understand Variable Scope and Extent. Parameters. Local Variables. Blocks. 7. How to Benefit From Procedure Abstraction. Making Programs Easier to Reuse, Read, and Debug. Making Programs Easier to Augment, Improve, and Adapt. 8. How to Declare Class Variables Class Variables. Final Variables. 9. How to Create Class Instances. Instance Creation. Instance Variables. 10. How to Define Instance Methods. Defining Instance Methods. The Special, Target Argument. 11. How to Define Constructor Instance Methods. Constructors and Initialization. The Default Constructor. Constructors With Parameters. 12. How to Define Getter and Setter Methods. Getter and Setter Instance Methods. Imaginary Member Variables. 13. How to Benefit From Data Abstraction. Access Methods and Data Abstraction. Making Programs Easier to Reuse. 14. How to Protect Instance Variables From Harmful Access. Private Instance Variables and Instance Methods. The Public Interface. 15. How to Define Classes That Inherit Instance Variables and Methods. Subclasses and Superclasses. Inheriting Instance Variables and Instance Methods. Shadowing, Also Known As Overriding. 16. How to Define Abstract Classes and Abstract Methods. Classes Without Instances. Classes Without Subclasses. Methods Without Bodies. 17. How to Write Constructors That Call Other Constructors. Using This. Using Super. 18. How to Write Methods That Call Other Methods. Passing Along a Target Argument. The This Parameter. 19. How to Design Classes and Class Hierarchies. Explicit Representation. Reusing Methods and Avoiding Duplication. The Modularity Principle. The No-Duplication Principle. The Look-It-Up Principle. The Need-to-Know Principle. The Is-A Versus Has-A Principle. 20. How to Perform Tests Using Predicates. Predicates. Equal, ==, and Not Equal, !=. Greater Than, , and Less Than, <. Not, !. Casting Before Testing. 21. How to Write One-Way and Two-Way Conditional Statements. Boolean Expressions. If and If Else. Empty Statements. The Conditional Operator, ?:. 22. How to Combine Boolean Expressions. And, &&, And Or, ||. Evaluation Order. 23. How to Write Iteration Statements. While and For Statements. Augmented Assignment Operators. Increment, ++, and Decrement, --, Operators. Side Effects and Evaluation Order. 24. How to Write Recursive Methods. Recursive Methods. The Base Part and The Recursion Part. Efficiency Considerations. 25. How to Write Multiway Conditional Statements. Case and Default. Fall Through. 26. How to Create File Streams for Input. Creating File Input Streams. Creating Tokenizers. Stepping, Testing, and Reading From Tokenizers. 27. How to Create and Access Arrays. Declaring and Initializing Arrays. Arrays of Numeric Elements. Arrays of Class-Instance Elements. Arrays of Mixed Instance Types. 28. How to Move Arrays Into and Out of Methods. Using Arrays As Arguments. Returning Arrays From Methods. 29. How to Store Data in Expandable Vectors. Vectors Versus Arrays. Storing Elements in Vectors. Retrieving Elements From Vectors. Obtaining The Size of A Vector. Queues and Push-Down Lists. Casting Vector Elements Prior to Use. 30. How to Work With Characters and Strings. Characters. Strings. Extracting Characters From Strings. Combining Strings. 31. How to Catch Exceptions. Exception Handling. The Try Statement. Catch and Finally Blocks. Exit Statements. 32. How to Create File Streams For Output. Creating File Output Streams. Creating Print Streams. Printing to Print Streams. 33. How to Modularize Programs Using Compilation Units and Packages. Modularization. Grouping Class Into Compilation Units and Packages. Package Names and Path Names. 34. How to Use Protected and Private Variables and Methods. Public Instance Variable and Methods. Private Instance Variable and Methods. Public Instance Variable and Methods. 35. How to Use Interfaces to Impose Requirements. Interfaces as an Alternative to Multiple Inheritance. Defining Interfaces. Tying Classes to Interfaces. Interface Parameters and Variables. 36. How to Draw Lines in Windows. Windows and Canvases. Graphics Contexts. Drawing Lines. 37. How to Write Text in Windows. Writing Text. Fonts and Font Metrics. 38. How to Define Applets. Applets and The Applet Class. The Init Method. Testing Applets. 39. How to Access Applets From Web Browsers. Formatting Tags. Embedding Applets in HTML Files. Passing Arguments to Applets From HTML Files. Locating HTML Files With URL Addresses. 40. How to Use The Model--View Approach to Interface Design. The Observable Class. The Observer Interface. Notifying and Updating. 41. How to Use Choice Lists to Select Instances. Adding Elements to Choice Lists. Determining Which Element Has Been Selected. 42. How to Incorporate Images Into Applets. Toolkits and Media Trackers. Scaling and Drawing Images. 43. How to Use Threads to Implement Dynamic Applets. Apparently Simultaneous Computation. Processes and Multithreading. Starting, Stopping, Suspending, and Resuming Threads. Putting A Thread to Sleep. 44. How to Create Text Fields and Buttons. Text Fields. The Grid Layout. 45. How to Design Applets Using Layout Managers. Border, Grid, Flow, and Gridbag Layouts. The Role of Resize, Minimumsize, and Preferredsize. 46. How to Display Menus and File Dialog Windows. Menu Items, Menus, and Menu Bars. Accessing Files Via File Dialogs. Appendix A. Operator Precedence. Appendix B. The Meter Canvas. Appendix C. Applet Parameters. Appendix D. Fighting Flicker. Colophon. Index. 020149826XT04062001


Best Sellers


Product Details
  • ISBN-13: 9780201498264
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Pearson
  • Height: 234 mm
  • No of Pages: 300
  • Spine Width: 14 mm
  • Width: 234 mm
  • ISBN-10: 020149826X
  • Publisher Date: 04 Sep 1996
  • Binding: Paperback
  • Language: English
  • Returnable: Y
  • Weight: 525 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
On to Java
Pearson Education (US) -
On to Java
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.

On to Java

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