1. Trang chủ
  2. » Luận Văn - Báo Cáo

Java TM programming

1,9K 11 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 1.947
Dung lượng 26,97 MB

Nội dung

get with the programming Through the power of practice and immediate personalized feedback, MyProgrammingLab improves your performance MyProgrammingLab™ Learn more at www.myprogramminglab.com ALWAYS LEARNING PEARSON This page intentionally left blank INTRODUCTION TO JAVA TM PROGRAMMING COMPREHENSIVE VERSION Ninth Edition Y Daniel Liang Armstrong Atlantic State University Boston Columbus Indianapolis New York San Francisco Upper Saddle River Amsterdam Cape Town Dubai London Madrid Milan Munich Paris Montreal Toronto Delhi Mexico City Sao Paulo Sydney Hong Kong Seoul Singapore Taipei Tokyo Editorial Director: Marcia Horton Editor in Chief: Michael Hirsch Executive Editor: Tracy Dunkelberger Associate Editor: Carole Snyder Director of Marketing: Patrice Jones Marketing Manager: Yez Alayan Marketing Coordinator: Kathryn Ferranti Marketing Assistant: Emma Snider Director of Production: Vince O’Brien Managing Editor: Jeff Holcomb Production Project Manager: Kayla Smith-Tarbox Operations Supervisor: Alan Fischer Manufacturing Buyer: Lisa McDowell Art Director: Anthony Gemmellaro Cover Designer: Anthony Gemmellaro Manager, Visual Research: Karen Sanatar Manager, Rights and Permissions: Mike Joyce Text Permission Coordinator: Danielle Simon and Jenn Kennett Cover Illustration: Jason Consalvo Lead Media Project Manager: Daniel Sandin Project Management: Gillian Hall Composition and Art: Laserwords Printer/Binder: Edwards Brothers Cover Printer: Lehigh-Phoenix Color/Hagerstown Text Font: Times 10/12 Credits and acknowledgments borrowed from other sources and reproduced, with permission, in this textbook appear on the appropriate page within text and as follows: Table 3.2 and 10.1: Data from IRS Figures 8.1, 8.12, 12.3, 12.5, 12.7, 12.9, 12.10, 12.12–12.21, 12.26–12.30, 13.1, 13.4, 13.9, 13.11, 13.15, 13.17, 13.19, 13.21, 13.23, 13.25–13.35, 14.10, 14.14,15.9–15.11, 16.1, 16.2, 16.8, 16.11, 16.14, 16.17, 16.19–16.35, 17.1, 17.3, 17.6, 17.9, 17.12, 17.13, 17.15, 17.17–17.32, 18.6–18.8, 18.10, 18.15–18.35, 19.19, 19.20, 19.22, 20.1, 20.9, 20.12–20.14, 20.16–20.20, 22.8, 22.17–22.21, 24.4, 24.6, 24.8, 24.11–24.17, 25.18–25.20, 27.17, 27.23-–27.25, 30.10, 30.14, 30.22, 30.23, 30.25, 31.24–31.26, 32.6, 32.7, 32.31–32.34, 33.5, 33.9–33.11, 33.16–33.22, 34.23, 34.27–34.30: Screenshots © 2011 by Oracle Corporation Reprinted with permission Microsoft® and Windows® are registered trademarks of the Microsoft Corporation in the U.S.A and other countries Screen shots and icons reprinted with permission from the Microsoft Corporation This book is not sponsored or endorsed by or affiliated with the Microsoft Corporation Copyright © 2013, 2011, 2009, 2007, 2004 by Pearson Education, Inc., publishing as Prentice Hall All rights reserved Manufactured in the United States of America This publication is protected by Copyright, and permission should be obtained from the publisher prior to any prohibited reproduction, storage in a retrieval system, or transmission in any form or by any means, electronic, mechanical, photocopying, recording, or likewise To obtain permission(s) to use material from this work, please submit a written request to Pearson Education, Inc., Permissions Department, One Lake Street, Upper Saddle River, New Jersey 07458, or you may fax your request to 201-236-3290 Many of the designations by manufacturers and sellers to distinguish their products are claimed as trademarks Where those designations appear in this book, and the publisher was aware of a trademark claim, the designations have been printed in initial caps or all caps Library of Congress Cataloging-in-Publication Data available upon request 10 ISBN 13: 978-0-13-293652-1 ISBN 10: 0-13-293652-6 This book is dedicated to Professor Myers Foreman Myers used this book in CS1, CS2, and CS3 at Lamar University and provided invaluable suggestions for improving the book Sadly, Myers passed away after he completed the review of this edition To Samantha, Michael, and Michelle This page intentionally left blank PREFACE Dear Reader, Many of you have provided feedback on earlier editions of this book, and your comments and suggestions have greatly improved the book This edition has been substantially enhanced in presentation, organization, examples, exercises, and supplements We have: ■ Reorganized sections and chapters to present the subjects in a more logical order ■ Included many new interesting examples and exercises to stimulate interests ■ Updated to Java ■ Created animations for algorithms and data structures to visually demonstrate the concepts ■ Redesigned the support Website to make it easier to navigate This book teaches programming in a problem-driven way that focuses on problem solving rather than syntax We make introductory programming interesting by using thought-provoking problems in a broad context The central thread of early chapters is on problem solving Appropriate syntax and library are introduced to enable readers to write programs for solving the problems To support the teaching of programming in a problem-driven way, the book provides a wide variety of problems at various levels of difficulty to motivate students To appeal to students in all majors, the problems cover many application areas, including math, science, business, financial, gaming, animation, and multimedia The book focuses on fundamentals first by introducing basic programming concepts and techniques before designing custom classes The fundamental concepts and techniques of loops, methods, and arrays are the foundation for programming Building this strong foundation prepares students to learn object-oriented programming and advanced Java programming This comprehensive version covers fundamentals of programming, object-oriented programming, GUI programming, algorithms and data structures, concurrency, networking, internationalization, advanced GUI, database, and Web programming It is designed to prepare students to become proficient Java programmers A brief version (Introduction to Java Programming, Brief Version, Ninth Edition) is available for a first course on programming, commonly known as CS1 The brief version contains the first 20 chapters of the comprehensive version The best way to teach programming is by example, and the only way to learn programming is by doing Basic concepts are explained by example, and a large number of exercises with various levels of difficulty are provided for students to practice For our programming courses, we assign programming exercises after each lecture Our goal is to produce a text that teaches problem solving and programming in a broad context using a wide variety of interesting examples If you have any comments on and suggestions for improving the book, please email me what is new? problem-driven fundamentals-first comprehensive version brief version examples and exercises Sincerely, Y Daniel Liang y.daniel.liang@gmail.com www.cs.armstrong.edu/liang www.pearsonhighered.com/liang vii viii Preface What’s New in This Edition? This edition substantially improves Introduction to Java Programming, Eighth Edition The major improvements are as follows: complete revision ■ This edition is completely revised in every detail to enhance clarity, presentation, content, examples, and exercises new problems ■ New examples and exercises are provided to motivate and stimulate student interest in programming key point ■ Each section starts with a Key Point that highlights the important concepts covered in the section check point ■ Check Points provide review questions to help students track their progress and evaluate their learning after a major concept or example is covered test questions ■ Each chapter provides test questions online They are grouped by sections for students to self-test The questions are graded online VideoNotes ■ New VideoNotes provide short video tutorials designed to reinforce code basic GUI and graphics early ■ The Java GUI API is an excellent example of how the object-oriented principle is applied Students learn better with concrete and visual examples So basic GUI/Graphics is moved before introducing abstract classes and interfaces You can however still choose to cover abstract classes and interfaces before GUI or skip GUI numeric classes covered early ■ The numeric wrapper classes, BigInteger, and BigDecimal are now introduced in Chapter 10 to enable students to write code using these classes early exception handling earlier ■ Exception handling is covered before abstract classes and interfaces so that students can build robust programs early The instructor can still choose to cover exception handling later Text I/O is now combined with exception handling to form a new chapter simple generics early ■ Simple use of generics is introduced along with ArrayList in Chapter 11 and with Comparable in Chapter 15 while the complex detail on generics is still kept in Chapter 21 splitting Chapter 22 ■ Chapter 22 is split into two chapters (Chapter 22 and Chapter 23) to make room for incorporating three new case studies to demonstrate effective use of data structures ■ Chapter 24 is expanded to introduce algorithmic techniques: dynamic programming, divide-and-conquer, backtracking, and greedy algorithm with new examples to design efficient algorithms ■ Visual animations are created to show how data structures and algorithms work ■ A common problem with a data structures course is lack of good examples and exercises This edition added many new interesting examples and exercises ■ Parallel programming techniques are introduced in Chapter 32, Multithreading and Parallel Programming new JSF chapter ■ Chapter 44 is completely new to introduce the latest standard on JSF new JUnit chapter ■ Chapter 50 is completely new to introduce testing using JUnit developing efficient algorithms data structures and algorithm animation new data structures materials parallel programming Please visit www.cs.armstrong.edu/liang/intro9e/newfeatures.html for a complete list of new features as well as correlations to the previous edition Preface ix Pedagogical Features The book uses the following elements to help students get the most from the material: ■ The Objectives at the beginning of each chapter list what students should learn from the chapter This will help them determine whether they have met the objectives after completing the chapter ■ The Introduction opens the discussion with representative problems to give the reader an overview of what to expect from the chapter ■ Key Points highlight the important concepts covered in each section ■ Check Points provide review questions to help students track their progress as they read through the chapter and evaluate their learning ■ Problems and Case Studies, carefully chosen and presented in an easy-to-follow style, teach problem solving and programming concepts The book uses many small, simple, and stimulating examples to demonstrate important ideas ■ The Chapter Summary reviews the important subjects that students should understand and remember It helps them reinforce the key concepts they have learned in the chapter ■ Test Questions are accessible online, grouped by sections, for students to self-test on programming concepts and techniques ■ Programming Exercises are grouped by sections to provide students with opportunities to apply the new skills they have learned on their own The level of difficulty is rated as easy (no asterisk), moderate (*), hard (**), or challenging (***) The trick of learning programming is practice, practice, and practice To that end, the book provides a great many exercises ■ Notes, Tips, Cautions, and Design Guides are inserted throughout the text to offer valuable advice and insight on important aspects of program development Note Provides additional information on the subject and reinforces important concepts Tip Teaches good programming style and practice Caution Helps students steer away from the pitfalls of programming errors Design Guide Provides guidelines for designing programs Flexible Chapter Orderings The book is designed to provide flexible chapter orderings to enable GUI, exception handling, recursion, generics, and the Java Collections Framework to be covered earlier or later The diagram on the next page shows the chapter dependencies Organization of the Book The chapters can be grouped into five parts that, taken together, form a comprehensive introduction to Java programming, data structures and algorithms, and database and Web programming Because knowledge is cumulative, the early chapters provide the conceptual basis ... (JSP), and JavaServer Faces (JSF) ■ Java Micro Edition (Java ME) to develop applications for mobile devices, such as cell phones This book uses Java SE to introduce Java programming Java SE is... Computers, Programs, and Java Ch 18 Part V: Advanced Java Programming Chapter 32 Multithreading and Parallel Programming Chapter 33 Networking Chapter 34 Java Database Programming Chapter 35 Internationalization... Programs, and Java 1.6 The Java Language Specification, API, JDK, and IDE Key Point Java language specification API library Java syntax is defined in the Java language specification, and the Java library

Ngày đăng: 01/03/2021, 09:22