Home > Store

Java 2 Programmer's Interactive Workbook

Register your product to gain access to bonus material or receive a coupon.

Java 2 Programmer's Interactive Workbook

Book

  • Sorry, this book is no longer in print.
Not for Sale

About

Features

  • “Test Your Thinking” project solutions and detailed explanations!
  • Authors' Corner: Your personal connection to this book's expert authors.
  • Additional self-review exercises with instant feedback and explanations!
  • An exclusive message board where you can interact with other students!

Description

  • Copyright 2000
  • Edition: 1st
  • Book
  • ISBN-10: 0-13-016638-3
  • ISBN-13: 978-0-13-016638-8

The perfect course in Java for absolute beginners: a total book-and-web integrated learning solution that teaches you Java hands-on! Get started with Java: make sure your Java environment works, start editing files and using the Java console; running Java code, applications, and applets. Through simple examples and analogies, learn what objects are and what object-oriented programming involves. Then, master Java data types, control structures, basic Java graphical user interfaces and the layout manager; events, multimedia, even advanced subclassing, inheritance, exceptions and error handling. Like every book in the Prentice Hall Interactive Workbook series, this one is full of hands-on labs, exercises, "test your thinking" projects, and more -- all supported by a free, Web-based training site!

Sample Content

Downloadable Sample Chapter

Click here for a sample chapter for this book: 0130166383.pdf

Table of Contents



1. Getting Started.

Lab 1.1 Compiling and Running A Java Program. Test Your Thinking.



2. Basic Syntax of a Java Program.

Lab 2.1 The Structure of a Simple Java Program. Lab 2.2 A Basic Overview of Variables. Lab 2.3 A Basic Overview of Methods. Test Your Thinking.



3. Data Types.

Lab 3.1 Primitive Data Types. Lab 3.2 The String Class. Lab 3.3 Arrays. Lab 3.4 Vectors. Test Your Thinking.



4. Flow Control.

Lab 4.1 Boolean Testing. Lab 4.2 If-Then-Else. Lab 4.3 The While Loop. Lab 4.4 The For Loop. Lab 4.5 Switch Statement. Test Your Thinking.



5. Boolean Logic.

Lab 5.1 Boolean Math. Lab 5.2 Boolean Expressions. Test Your Thinking.



6. The Graphical User Interface.

Lab 6.1 GUI Basics. Lab 6.2 Application Versus Applet GUIs. Lab 6.3 The Use of Labels. Lab 6.4 The Use of Buttons. Lab 6.5 The Use of Text Components. Test Your Thinking.



7. Layout Managers.

Lab 7.1 The BorderLayout. Lab 7.2 The GridLayout. Lab 7.3 Combining Layout Managers. Lab 7.4 The GridBagLayout. Test Your Thinking.



8. Events.

Lab 8.1 Basic Event Handling. Lab 8.2 Different Approaches to Event Handling. Test Your Thinking.



9. Multimedia.

Lab 9.1 Images. Lab 9.2 Colors. Lab 9.3 Sounds. Lab 9.4 Fonts. Test Your Thinking.



10. Creating Your Own Classes.

Lab 10.1 Designing and Implementing Classes. Lab 10.2 Special Class Features. Lab 10.3 Subclasses and Inheritance. Test Your Thinking.



11. Errors and Exceptions.

Lab 11.1 Error-Handling with Return Values. Lab 11.2 Error-Handling with Exceptions. Lab 11.3 Throwing and Catching Exceptions. Lab 11.4 Creating Your Own Exceptions. Test Your Thinking.



Appendix A: Lab Self-Review Answers.


Appendix B: Java Reserved Words.


Index.

Preface

Introduction

Welcome to the Java 2 Programmer's Interactive Workbook. This book will help guide you as you learn the Java programming language, which is regarded as the future of computer programming. Never before has a computer language so successfully combined a powerful object-oriented language with all of the graphical tools needed to create a fully functional program that can run on any system and in any Web browser. With the advance of the Internet, Java has become the language of choice for developers who need to create and distribute their applications quickly.

Java was developed by Sun Microsystems in the early 1990s and has been gaining popularity every since. Prior to Java, the two main languages used by the computer industry were C, and C++. C is simple, powerful, and sometimes elegant, but it is also a procedural language. C++ is object-oriented, but also hugely complex and requires a great deal of overhead to maintain a program. Both languages are also machine-dependent, meaning that their programs only run on one type of computer (PC, Mac, Unix). The program must be recompiled, and sometimes rewritten, to work on a different computer. This can lead to long development times for projects.

Likewise, neither C nor C++ have built-in graphical utilities. Both must use special libraries that allow the program to use the windowing features of the computer. These libraries can be vastly different on various computer platforms, requiring more rewriting of the programs.

Java provides programmers the power and flexibility of C, while at the same time, allowing them to build true object-oriented programs without the overhead of C++. Additionally, the graphics utilities are built-in to Java, so no writing is ever needed. With Java 2, the "look and feel" of the program can be changed to match the local windowing system without any rewriting or recompiling. This means the same program can look like a Mac program when running on a Mac, and also look like a Windows program when running on a PC. All of this is possible after just writing and compiling the program just one time.

One additional feature of Java is that all of the objects created in Java

are truly reusable. This means that every program can build on past programs, greatly reducing the time it takes to develop programs. No longer do programmers have to keep reinventing the wheel with every new project.

Who This Book Is For

This book is for the beginning programmer. It teaches computer programming using Java as the first language. Almost every other Java book out there assumes that you've programmed in some other language before (usually C). This book does not make that assumption. If you have never programmed before, then this book is for you. If you have programmed in an "older" language, such as Fortran, Pascal or Cobol, then this book is also for you. If you have programmed extensively in C or C++, then this book is probably not for you—it may be too basic for you.

In addition to covering the basics of the Java programming language, this book will also cover topics that apply to any programming language. Such topics include general programming terms, Boolean logic, and basic program design. There are many books that show you how to do something in Java, but the authors feel that it's just as important to know why and when to do it.

This book is also not intended to be the end-all of Java books. Far from it! However, the unique format of the Interactive Workbook series makes this book an excellent tool to get you started down the path of learning Java. You won't be a Java expert when you're done with this book, but you will have a solid foundation on which to become an expert. The authors recommend that you follow-up this book with at least two other books on Java (you know, the ones that assume you already know the language!). One book should be a general Java reference book, and the other should be a Swing book. You'll learn about Swing is this book, but for now, know that Swing is the toolkit used to create graphical user interfaces (GUIs). There are many such books out there today, and most of them are very good, but as reference books. This book is meant to fill that gap between knowing nothing, and being able to use the reference books.

How This Book Is Organized

The Interactive Workbook series offers a unique and challenging program to "learn by doing." Only by engaging your brain in exercises can you truly learn anything. The creators of the Interactive Workbook series understand this concept, so these books offer more than just reading.

Chapters, Labs, and Exercises, oh my!

Every chapter is divided into several labs. Each lab targets a specific topic. You should try and complete a lab in a single sitting, so allow yourself some time. As you begin each lab, you will be given some instruction followed by the exercises. Make sure you do the exercises! The exercises are the key to learning. The authors also provide answers to the exercises, as well as follow-up discussion.

It is crucial that you actually do the exercises and then read the answers. It is also crucial that you read the discussion that follows. Unlike most books, the "chapter" is not over when the labs begin. The labs are not just a regurgitation of the chapter instruction. The exercises in the lab will reinforce the instruction in the chapter, but they will then challenge you to build on that knowledge. The answers to the exercises may contain new information not presented in the chapter instruction. This new information will make much more sense to you if you have done the exercises first.

Self-Review Questions

At the end of each chapter are a series of Self-Review Questions. These questions also help to reinforce that you have learned what you needed to learn from the chapter. The answers to these questions can be found in Appendix A of this book.

Test Your Thinking

The end of each chapter also has a Test Your Thinking section. This section contains more advanced projects than those contained in the labs. If you can handle these exercises, then you have really started to master the subject! The answers for the Test Your Thinking projects are not in the book, but they can be found on the Web page for this book.

Web Companion

As with all of the books in the Interactive Workbook series, this book has a companion Web site, which is located at the following site:

http://www.phptr.com/chu

This companion Web site is closely integrated with the content of this book, and we encourage you to visit it early and often. At the Web site, you will find all of the source code used in this book, answers to the Test Your Thinking exercises, the Self-Review questions and answers, and more! You can also send e-mail to the authors because they just don't get enough!

What You Will Need

In order to program in Java, and use this book, you will need a few things.

A Computer

This may seem obvious, but you will need one. Java, being a platform-independent language, will run on most current computers. Java is supported on the following systems:

  • Window 95, 98, or NT or better
  • MacOS 8.1 or better
  • Solaris 2.5.1 or better

For the other flavors of Unix, including Linux, you'll need to check the Web page that follows.

The Java 2 Software Developers Kit (SDK)

For this book, you will need to obtain the Production Release of the Java 2 SDK Standard Edition. This is also known as the JDK 1.2. At press time, this was actually known as JDK 1.2.2. There may be a more recent release by the time the book goes to print.

The Solaris and Windows version of Java 2 are free from Sun Microsystems at the following URL:

http://java.sun.com/java2

At this URL you will find both the Java 2 software and the documentation. We recommend that you get both. You may not be able to understand the documentation at first, but . . .

Sun may require that you register yourself for the download, but the software is free.

At press time, the actual download URL is the following:

http://java.sun.com/products/jdk/1.2

From this location you can download the Windows or Solaris releases of Java. If you have a Mac, or different flavor of Unix, click on the Platform Ports link to direct you to the version you need.

In Chapter 1, we will cover the download process and make sure that you can compile and run a Java program. Then in Chapter 2, we'll start learning some Java!

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020