Starting Out with Java: From Control Structures through Objects, 3/e(Paperback)
暫譯: Java 程式設計入門:從控制結構到物件,第三版(平裝本)
Tony Gaddis
- 出版商: Addison Wesley
- 出版日期: 2007-01-27
- 售價: $4,270
- 貴賓價: 9.5 折 $4,057
- 語言: 英文
- 頁數: 987
- 裝訂: Paperback
- ISBN: 0321479270
- ISBN-13: 9780321479273
-
相關分類:
Java 程式語言
已過版
買這商品的人也買了...
-
$590$531 -
$1,710$1,625 -
$750$638 -
$980$774 -
$880$748 -
$630$599 -
$580$458 -
$280$218 -
$600$474 -
$550$435 -
$450$356 -
$480$379 -
$680$537 -
$780$616 -
$1,900$1,805 -
$2,580$2,451 -
$720$569 -
$480$408 -
$650$514 -
$2,390$2,271 -
$880$695 -
$1,200$948 -
$600$480 -
$880$695 -
$480$408
相關主題
商品描述
Description
Tony Gaddis’s accessible, step-by-step style helps beginning students understand the important details necessary to become skilled programmers at an introductory level. Gaddis motivates the study of both programming skills and a programming language by presenting all the details needed to understand the “how” and the “why”—but never losing sight of the fact that most beginners struggle with this material. His approach is both gradual and highly accessible, ensuring that students get the logic behind developing high-quality programs.
In Starting Out with Java: From Control Structures through Objects, Gaddis covers procedural programming—control structures and methods—before introducing objects in the latter part of the book. As with all Gaddis texts, clear and easy-to-read code listings, concise and practical real-world examples, and an abundance of exercises appear in every chapter.
Table of Contents
Preface
Chapter 1 Introduction to Computers and Java
1.1 Introduction
1.2 Why Program?
1.3 Computer Systems: Hardware and Software
1.4 Programming Languages
1.5 What Is a Program Made of?
1.6 The Programming Process
1.7 Object-Oriented Programming
Chapter 2 Java Fundamentals
2.1 The Parts of a Java Program
2.2 The print and println Methods, and the Java API
2.3 Variables and Literals
2.4 Primitive Data Types
2.5 Arithmetic Operators
2.6 Combined Assignment Operators
2.7 Conversion between Primitive Data Types
2.8 Creating Named Constants with final
2.9 The String Class
2.10 Scope
2.11 Comments
2.12 Programming Style
2.13 Reading Keyboard Input
2.14 Dialog Boxes
2.15 Common Errors to Avoid
Chapter 3 Decision Structures
3.1 The if Statement
3.2 The if-else Statement
3.3 The if-else-if Statement
3.4 Nested if Statements
3.5 Logical Operators
3.6 Comparing String Objects
3.7 More about Variable Declaration and Scope
3.8 The Conditional Operator (Optional)
3.9 The switch Statement
3.10 Creating Objects with the DecimalFormat Class
3.11 The printf Method
3.12 Common Errors to Avoid
Chapter 4 Loops and Files
4.1 The Increment and Decrement Operators
4.2 The while Loop
4.3 Using the while Loop for Input Validation
4.4 The do-while Loop
4.5 The for Loop
4.6 Running Totals and Sentinel Values
4.7 Nested Loops
4.8 The break and continue Statements (Optional)
4.9 Deciding Which Loop to Use
4.10 Introduction to File Input and Output
4.11 The Random Class
4.12 Common Errors to Avoid
Chapter 5 Methods
5.1 Introduction to Methods
5.2 Passing Arguments to a Method
5.3 More about Local Variables
5.4 Returning a Value from a Method
5.5 Problem Solving with Methods
5.6 Common Errors to Avoid
Chapter 6 A First Look at Classes
6.1 Classes and Objects
6.2 Instance Fields and Methods
6.3 Constructors
6.4 Overloading Methods and Constructors
6.5 Scope of Instance Fields
6.6 Packages and import Statements
6.7 Focus on Object-Oriented Design: Finding the Classes and Their Responsibilities
6.8 Common Errors to Avoid
Chapter 7 A First Look at GUI Applications
7.1 Introduction
7.2 Creating Windows
7.3 Equipping GUI Classes with a main Method
7.4 Layout Managers
7.5 Radio Buttons and Check Boxes
7.6 Borders
7.7 Focus on Problem Solving: Extending Classes from JPanel
7.8 Splash Screens
7.9 Using Console Output to Debug a GUI Application
7.10 Common Errors to Avoid
Chapter 8 Arrays and the ArrayList Class
8.1 Introduction to Arrays
8.2 Processing Array Elements
8.3 Passing Arrays As Arguments to Methods
8.4 Some Useful Array Algorithms and Operations
8.5 Returning Arrays from Methods
8.6 String Arrays
8.7 Arrays of Objects
8.8 The Sequential Search Algorithm
8.9 Two-Dimensional Arrays
8.10 Arrays with Three or More Dimensions
8.11 The Selection Sort and the Binary Search Algorithms
8.12 Command-Line Arguments and Variable-Length Argument Lists
8.13 The ArrayList Class
8.14 Common Errors to Avoid
Chapter 9 A Second Look at Classes and Objects
9.1 Static Class Members
9.2 Passing Objects As Arguments to Methods
9.3 Returning Objects from Methods
9.4 The toString Method
9.5 Writing an equals Method
9.6 Methods That Copy Objects
9.7 Aggregation
9.8 The this Reference Variable
9.9 Enumerated Types
9.10 Garbage Collection
9.11 Focus on Object-Oriented Design: Class Collaboration
9.12 Common Errors to Avoid
Chapter 10 Text Processing and More about Wrapper Classes
10.1 Introduction to Wrapper Classes
10.2 Character Testing and Conversion with the Character Class
10.3 More String Methods
10.4 The StringBuilder Class
10.5 Tokenizing Strings
10.6 Wrapper Classes for the Numeric Data Types
10.7 Focus on Problem Solving: The TestScoreReader Class
10.8 Common Errors to Avoid
Chapter 11 Inheritance
11.1 What Is Inheritance?
11.2 Calling the Superclass Constructor
11.3 Overriding Superclass Methods
11.4 Protected Members
11.5 Chains of Inheritance
11.6 The Object Class
11.7 Polymorphism
11.8 Abstract Classes and Abstract Methods
11.9 Interfaces
11.10 Common Errors to Avoid
Chapter 12 Exceptions and Advanced File I/O
12.1 Handling Exceptions
12.2 Throwing Exceptions
12.3 Advanced Topics: Binary Files, Random Access Files, and Object Serialization
12.4 Common Errors to Avoid
Chapter 13 Advanced GUI Applications
13.1 The Swing and AWT Class Hierarchy
13.2 Read-Only Text Fields
13.3 Lists
13.4 Combo Boxes
13.5 Displaying Images in Labels and Buttons
13.6 Mnemonics and Tool Tips
13.7 File Choosers and Color Choosers
13.8 Menus
13.9 More about Text Components: Text Areas and Fonts
13.10 Sliders
13.11 Look and Feel
13.12 Common Errors to Avoid
Chapter 14 Applets and More
14.1 Introduction to Applets
14.2 A Brief Introduction to HTML
14.3 Creating Applets with Swing
14.4 Using AWT for Portability
14.5 Drawing Shapes
14.6 Handling Mouse Events
14.7 Timer Objects
14.8 Playing Audio
14.9 Common Errors to Avoid
Chapter 15 Recursion
15.1 Introduction to Recursion
15.2 Solving Problems with Recursion
15.3 Examples of Recursive Methods
15.4 A Recursive Binary Search Method
15.5 The Towers of Hanoi
15.6 Common Errors to Avoid
Appendix A Getting Started with Alice
Student CD-ROM:
Appendix B The ASCII/Unicode Characters
Appendix C Operator Precedence and Associativity
Appendix D Java Key Words
Appendix E Installing the JDK and JDK Documentation
Appendix F Using the javadoc Utility
Appendix G More about the Math Class
Appendix H Packages
Appendix I Working with Records and Random Access Files
Appendix J Using JBuilder 8
Appendix K More about JOptionPane Dialog Boxes
Appendix L Answers to Checkpoints
Appendix M Answers to Odd-Numbered Review Questions
Case Study 1 Calculating Sales Commission
Case Study 2 The Amortization Class
Case Study 3 The PinTester Class
Case Study 4 Parallel Arrays
Case Study 5 The FeetInches Class
Case Study 6 The SerialNumber Class
Case Study 7 A Simple Text Editor Application
商品描述(中文翻譯)
**描述**
Tony Gaddis 的易懂、逐步教學風格幫助初學者理解成為熟練程式設計師所需的重要細節。Gaddis 透過呈現理解「如何」和「為什麼」所需的所有細節,來激勵學習程式設計技能和程式語言,但始終不忘大多數初學者在這些材料上會遇到困難。他的教學方法既漸進又非常易於理解,確保學生掌握開發高品質程式的邏輯。
在《Starting Out with Java: From Control Structures through Objects》中,Gaddis 在書的前半部分介紹程序式編程——控制結構和方法——然後在後半部分引入物件。與所有 Gaddis 的書籍一樣,每一章都包含清晰易讀的程式碼清單、簡潔且實用的現實世界範例,以及大量的練習題。
**目錄**
前言
**第 1 章 介紹電腦與 Java**
1.1 介紹
1.2 為什麼要編程?
1.3 電腦系統:硬體與軟體
1.4 程式語言
1.5 程式是由什麼組成的?
1.6 編程過程
1.7 物件導向編程
**第 2 章 Java 基礎**
2.1 Java 程式的組成部分
2.2 print 和 println 方法,以及 Java API
2.3 變數和字面量
2.4 原始資料類型
2.5 算術運算子
2.6 組合賦值運算子
2.7 原始資料類型之間的轉換
2.8 使用 final 創建命名常數
2.9 String 類
2.10 範圍
2.11 註解
2.12 編程風格
2.13 讀取鍵盤輸入
2.14 對話框
2.15 常見錯誤避免
**第 3 章 決策結構**
3.1 if 語句
3.2 if-else 語句
3.3 if-else-if 語句
3.4 嵌套 if 語句
3.5 邏輯運算子
3.6 比較 String 物件
3.7 變數宣告和範圍的更多資訊
3.8 條件運算子(可選)
3.9 switch 語句
3.10 使用 DecimalFormat 類創建物件
3.11 printf 方法
3.12 常見錯誤避免
**第 4 章 迴圈與檔案**
4.1 增量和減量運算子
4.2 while 迴圈
4.3 使用 while 迴圈進行輸入驗證
4.4 do-while 迴圈
4.5 for 迴圈
4.6 總和和哨兵值
4.7 嵌套迴圈
4.8 break 和 continue 語句(可選)
4.9 決定使用哪種迴圈
4.10 檔案輸入和輸出的介紹
4.11 Random 類
4.12 常見錯誤避免
**第 5 章 方法**
5.1 方法介紹
5.2 向方法傳遞參數
5.3 有關局部變數的更多資訊
5.4 從方法返回值
5.5 使用方法解決問題
5.6 常見錯誤避免
**第 6 章 初探類別**
6.1 類別和物件
6.2 實例欄位和方法
6.3 建構子
6.4 方法和建構子的重載
6.5 實例欄位的範圍
6.6 套件和 import 語句
6.7 專注於物件導向設計:尋找類別及其責任
6.8 常見錯誤避免
**第 7 章 初探 GUI 應用程式**
7.1 介紹
7.2 創建視窗
7.3 為 GUI 類別配備 main 方法
7.4 佈局管理器
7.5 單選按鈕和複選框
7.6 邊框
7.7 專注於問題解決:從 JPanel 擴展類別
7.8 啟動畫面
7.9 使用控制台輸出來除錯 GUI 應用程式
7.10 常見錯誤避免
**第 8 章 陣列與 ArrayList 類**
8.1 陣列介紹
8.2 處理陣列元素
8.3 將陣列作為參數傳遞給方法
8.4 一些有用的陣列演算法和操作
8.5 從方法返回陣列
8.6 字串陣列
8.7 物件陣列
8.8 順序搜尋演算法
8.9 二維陣列
8.10 三維或更多維度的陣列
8.11 選擇排序和二元搜尋演算法
8.12 命令列參數和可變長度參數列表
8.13 ArrayList 類
8.14 常見錯誤避免
**第 9 章 再探類別與物件**
9.1 靜態類別成員
9.2 將物件作為參數傳遞給方法
9.3 從方法返回物件
9.4 toString 方法
9.5 寫一個 equals 方法
9.6 複製物件的方法
9.7 聚合
9.8 this 參考變數
9.9 列舉類型
9.10 垃圾回收
9.11 專注於物件導向設計:類別協作
9.12 常見錯誤避免
**第 10 章 文本處理與包裝類的更多資訊**
10.1 包裝類介紹
10.2 使用 Character 類進行字符測試和轉換
10.3 更多字串方法
10.4 StringBuilder 類
10.5 字串標記化
10.6 數值資料類型的包裝類
10.7 專注於問題解決:TestScoreReader 類
10.8 常見錯誤避免
**第 11 章 繼承**
11.1 繼承是什麼?
11.2 呼叫超類別建構子
11.3 覆寫超類別方法
11.4 受保護成員
11.5 繼承鏈
11.6 Object 類
11.7 多型
11.8 抽象類別和抽象方法
11.9 介面
11.10 常見錯誤避免
**第 12 章 異常與進階檔案 I/O**
12.1 處理異常
12.2 拋出異常
12.3 進階主題:二進位檔案、隨機存取檔案和物件序列化
12.4 常見錯誤避免
**第 13 章 進階 GUI 應用程式**
13.1 Swing 和 AWT 類別層級
13.2 只讀文本欄位
13.3 列表
13.4 下拉選單
13.5 在標籤和按鈕中顯示圖像
13.6 助記符和工具提示
13.7 檔案選擇器和顏色選擇器
13.8 菜單
13.9 有關文本組件的更多資訊:文本區域和字型
13.10 滑桿
13.11 外觀與感覺
13.12 常見錯誤避免
**第 14 章 Applet 及更多**
14.1 Applet 介紹
14.2 HTML 簡介
14.3 使用 Swing 創建 Applet
14.4 使用 AWT 以提高可攜性
14.5 繪製形狀
14.6 處理滑鼠事件
14.7 計時器物件
14.8 播放音頻
14.9 常見錯誤避免
**第 15 章 遞迴**
15.1 遞迴介紹
15.2 使用遞迴解決問題
15.3 遞迴方法的範例
15.4 遞迴二元搜尋方法
15.5 漢諾塔
15.6 常見錯誤避免
附錄 A 開始使用 Alice
**學生 CD-ROM:**
附錄 B ASCII/Unicode 字元
附錄 C 運算子優先順序和結合性
附錄 D Java 關鍵字
附錄 E 安裝 JDK 和 JDK 文件
附錄 F 使用 javadoc 工具
附錄 G 有關 Math 類的更多資訊
附錄 H 套件
附錄 I 使用記錄和隨機存取檔案
附錄 J 使用 JBuilder 8
附錄 K 有關 JOptionPane 對話框的更多資訊
附錄 L 檢查點答案
附錄 M 奇數編號回顧問題的答案
案例研究 1 計算銷售佣金
案例研究 2 攤銷類
案例研究 3 PinTester 類
案例研究 4 平行陣列
案例研究 5 FeetInches 類
案例研究 6 SerialNumber 類
案例研究 7 簡單文本編輯器應用程式