Java核心技术:第8版评注版pdf下载pdf下载

Java核心技术:第8版评注版百度网盘pdf下载

作者:
简介:本篇主要提供Java核心技术:第8版评注版pdf下载
出版社:北京晋北风图书专营店
出版时间:2011-06
pdf下载价格:0.00¥

免费下载


书籍下载


内容介绍

基本信息

书名:Java核心技术:卷Ⅰ:基础知识:第8版

定价:99元

作者:(美)霍斯特曼,(美)科内尔(Cornell,G.)著,公飞 评注

出版社:电子工业出版社

出版日期:2011-6-1

字数:972000

页码:619

版次:

装帧:平装

开本:16开

商品重量:

编辑推荐


  《Java核心技术》(CoreJava)自版出版以来,一直备受广大Java程序设计人员的青睐,不衰,是Java经典书籍。第8版针对Java SE6平台进行了全面更新,囊括了Java平台标准版(JavaSE/J2SE)的基础知识,提供了大量完整且具有实际意义的应用实例,详细介绍了Java语言基础知识、面向对象程序设计、接口与内部类、事件监听器模型、swing图形用户界面程序设计、打包应用程序、异常处理、登录与调试、泛型程序设计、集合框架、多线程等内容。
  本评注版力邀资深专家执笔,在英文原著基础上增加了点评和注释,并对原书内容进行了精简,删除了Java图形窗口编程的相关内容,即原书的第7~10章,同时对章节序号进行了相应的调整,从而使本书更集中于Java核心语言。
  本评注版的目的旨在以先行者的学研心得与实践感悟,对读者的阅读和学习加以点拨、指明捷径。
  书中示例程序经过精心设计,不但具有实用价值,而且易于阅读理解,可以作为初学者自己编写程序的良好开端,也能够帮助程序员快速地了解JavaSE 6的新特性,或迅速从其他语言转向Java语言。

内容提要


  《Java核心技术》(CoreJava)自版出版以来,一直备受广大Java程序设计人员的青睐,不衰,是Java经典书籍。第8版针对Java SE6平台进行了全面更新,囊括了Java2平台、标准版(J2SE)的基础知识,提供了大量完整且具有实际意义的应用实例,详细介绍了Java语言基础知识、面向对象程序设计、接口与内部类、事件监听器模型、swing图形用户界面程序设计、打包应用程序、异常处理、登录与调试、泛型程序设计、集合框架、多线程等内容。

目录


Preface  XVIII
Acknowledgements  XXIV
Chapter 1  An Introduction to Java(新增批注共25条) 1
 Java As a Programming Platform 
 The Java “White Paper” Buzzwords 
 Simple 
 Object Oriented 
 Network-Savvy 
 Robust 
 Secure 
 Architecture Neutral 
 Portable 
 Interpreted 
 High Performance 
 Multithreaded 
 Dynamic  
 Java Applets and the Inter 
 A Short History of Java 
 Common Misconceptions about Java 
Chapter 2  The Java Programming Environment
 (新增批注共20条) 21
 Installing the Java Development Kit 
 Downloading the K 
 Setting the Execution Path 
 Installing the Library Source and Documentation 
 Installing the Core Java Program Examples 
 Navigating the Java Directories 
 Choosing a Development Environment 
 Using the Command-Line Tools 
 Troubleshooting Hints 
 Using an Integrated Development Environment 
 Locating Compilation Errors 
 Running a Graphical Application 
 Building and Running Applets 
Chapter 3  Fundamental Programming Structures in Java
 (新增批注共44条) 63
 A Simple Java Program 
 Comments 
 Data Types 
 Integer Types 
 Floating-Point Types 
 The char Type 
 The boolean Type 
 Variables 
 Initializing Variables 
 Constants 
 Operators 
 Increment and Decrement Operators 
 Relational and boolean Operators 
 Bitwise Operators 
 Mathematical Functions and Constants 
 Conversions between Numeric Types 
 Casts 
 Parentheses and Operator Hierarchy 
 Enumerated Types 
 Strings 
 Substrings 
 Concatenation 
 Strings Are Immutable 
 Testing Strings for Equality 
 Code Points and Code Units 
 The String API 
 Reading the On-Line API Documentation 
 Building Strings 
 Input and Output 
 Reading Input 
 Formatting Output 
 File Input and Output 
 Control Flow 
 Block Scope 
 Conditional Statements 
 Loops 
 Determinate Loops 
 Multiple Selections—The switch Statement 
 Statements That Break Control Flow 
 Big Numbers 
 Arrays 
 The “for each” Loop 
 Array Initializers and Anonymous Arrays 
 Array Copying 
 Command-Line Parameters 
 Array Sorting 
 Multidimensional Arrays 
 Ragged Arrays 
Chapter 4  Objects and Classes(新增批注共55条) 139
 Introduction to Object-Oriented Programming 
 Classes 
 Objects 
 Identifying Classes 
 Relationships between Classes 
 Using Predefined Classes 
 Objects and Object Variables 
 The GregorianCalendar Class of the Java Library 
 Mutator and Accessor Methods 
 Defining Your Own Classes 
 An Employee Class 
 Use of Multiple Source Files 
 Dissecting the Employee Class 
 First Steps with Constructors 
 Implicit and Explicit Parameters 
 Benefits of Encapsulation 
 Class-Based Access Privileges 
 Private Methods 
 Final Instance Fields 
 Static Fields and Methods 
 Static Fields 
 Static Constants 
 Static Methods 
 Factory Methods 
 The main Method 
 Method Parameters 
 Object Construction 
 Overloading 
 Default Field Initialization 185
 Default Constructors 
 Explicit Field Initialization 
 Parameter Names 
 Calling Another Constructor 
 Initialization Blocks 
 Object Destruction and the finalize Method 
 Packages 
 Class Importation 
 Static Imports 
 Addition of a Class into a Package 
 Package Scope 
 The Class Path 
 Setting the Class Path 
 Documentation Comments 
 Comment Insertion 
 Class Comments 
 Method Comments 
 Field Comments 
 General Comments 
 Package and Overview Comments 
 Comment Extraction 
 Class Design Hints 
Chapter 5  Inheritance(新增批注共42条) 213
 Classes, Superclasses, and Subclasses 
 Inheritance Hierarchies 
 Polymorphism 
 Dynamic Binding 
 Preventing Inheritance: Final Classes and Methods 
 Casting 
 Abstract Classes 
 Protected Access 
 Object: The Cosmic Superclass 
 The equals Method 
 Equality Testing and Inheritance 
 The hashCode Method 
 The toString Method 
 Generic Array Lists 
 Accessing Arr

作者介绍


文摘


序言