1 / 945
文档名称:

Java - Thinking in Java, 3rd Edition - Revision 4.0.pdf

格式:pdf   页数:945
下载后只包含 1 个 PDF 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

Java - Thinking in Java, 3rd Edition - Revision 4.0.pdf

上传人:bolee65 2014/4/14 文件大小:0 KB

下载得到文件列表

Java - Thinking in Java, 3rd Edition - Revision 4.0.pdf

文档介绍

文档介绍:Thinking in Java, 3rd ed. Revision
[ Viewing Hints ] [ Book Home Page ]
[ Free Newsletter ] [ Seminars ]
[ Seminars on CD ROM ] [ Consulting ]
Go to Expanded Table Of Contents
Preface
Introduction
1: Introduction to Objects
2: Everything is an Object
3: Controlling Program Flow
4: Initialization & Cleanup
5: Hiding the Implementation
6: Reusing Classes
7: Polymorphism
8: Interfaces & Inner Classes
9: Error Handling with Exceptions
10: Detecting Types
11: Collections of Objects
12: The Java I/O System
13: Concurrency
14: Creating Windows & Applets
15: Discovering Problems
16: Analysis and Design
A: Passing & Returning Objects
B: Java Programming Guidelines
C: Supplements
D: Resources
Index
Thinking in Java, 3rd ed. Revision
[ Viewing Hints ] [ Book Home Page ] [ Free Newsletter ]
[ Seminars ] [ Seminars on CD ROM ] [ Consulting ]

Thinking in Java, 3rd ed. Revision -
Contents
Thinking in Java, 3rd ed. Revision - Title Page
● Bruce Eckel’s Hands-On Java Seminar Multimedia CD: 3rd Edition follows this book It’s like
coming to the seminar! Available at
● Preface
❍ Preface to the 3rd edition
❍ Java 2, JDK
● Introduction
❍ Prerequisites
❍ Learning Java
❍ Goals
❍ JDK HTML documentation
❍ Chapters
❍ Exercises
❍ The CD ROM
❍ Source code
■ Coding standards
❍ Java versions
❍ Errors
❍ Note on the cover design
❍ Acknowledgements
● 1: Introduction to Objects
❍ The progress of abstraction
❍ An object has an interface
❍ An object provides services
❍ The hidden implementation
❍ Reusing the implementation
❍ Inheritance: reusing the interface
■ Is-a vs. is-like-a relationships
❍ Interchangeable objects with polymorphism
■ Abstract base classes and interfaces
❍ Object creation, use & lifetimes
■ Collections and iterators
■ The singly rooted hierarchy
■ Downcasting vs. templates/generics
■ Ensuring proper cleanup
■ Garbage collectors vs. efficiency