出版社:人民邮电出版社
年代:2014
定价:109.0
本书是经典的Java图书的最新版。这一版针对Java SE 7平台进行了全面更新。书中囊括了Java的全部基础知识,提供了大量完整且具有实际意义的应用示例,详细介绍了Java语言基础、面向对象编程、反射与代理、接口与内部类、事件监听器模型、使用SwingUI工具进行图形用户界面程序设计、打包应用程序、异常处理、登录与调试、泛型编程、集合框架、多线程等内容。
Chapter 1: An Introduction to Java 1
1.1 Java As a Programming Platform . 1
1.2 The Java “White Paper” Buzzwords 2
1.2.1 Simple 3
1.2.2 Object-Oriented 4
1.2.3 Network-Savvy 4
1.2.4 Robust 5
1.2.5 Secure 5
1.2.6 Architecture-Neutral . 6
1.2.7 Portable . 7
1.2.8 Interpreted 7
1.2.9 High-Performance . 8
1.2.10 Multithreaded 8
1.2.11 Dynamic 8
1.3 Java Applets and the Internet 9
1.4 A Short History of Java . 10
1.5 Common Misconceptions about Java . 13
Chapter 2: The Java Programming Environment 17
2.1 Installing the Java Development Kit 18
2.1.1 Downloading the JDK . 18
2.1.2 Setting the Executable Path 20
2.1.3 Installing the Library Source and Documentation . 22
2.1.4 Installing the Core Java Program Examples 23
2.1.5 Navigating the Java Directories . 24
2.2 Choosing a Development Environment 24
2.3 Using the Command-Line Tools . 25
2.3.1 Troubleshooting Hints 27
2.4 Using an Integrated Development Environment . 28
2.4.1 Locating Compilation Errors . 32
2.5 Running a Graphical Application . 33
2.6 Building and Running Applets . 36
Chapter 3: Fundamental Programming Structures in Java 41
3.1 A Simple Java Program 42
3.2 Comments 45
3.3 Data Types 46
3.3.1 Integer Types 47
3.3.2 Floating-Point Types . 48
3.3.3 The char Type . 49
3.3.4 The boolean Type . 51
3.4 Variables . 52
3.4.1 Initializing Variables . 53
3.4.2 Constants 54
3.5 Operators 55
3.5.1 Increment and Decrement Operators . 56
3.5.2 Relational and boolean Operators . 57
3.5.3 Bitwise Operators 58
3.5.4 Mathematical Functions and Constants . 59
3.5.5 Conversions between Numeric Types 60
3.5.6 Casts . 61
3.5.7 Parentheses and Operator Hierarchy . 62
3.5.8 Enumerated Types . 63
3.6 Strings . 64
3.6.1 Substrings . 64
3.6.2 Concatenation 64
3.6.3 Strings Are Immutable 65
3.6.4 Testing Strings for Equality 67
3.6.5 Empty and Null Strings 68
3.6.5 Code Points and Code Units 68
3.6.6 The String API 69
3.6.7 Readingthe Online API Documentation . 72
3.6.8 Building Strings . 74
3.7 Input and Output 76
3.7.1 Reading Input . 76
3.7.2 Formatting Output 79
3.7.3 File Input and Output . 84
3.8 Control Flow 86
3.8.1 Block Scope . 86
3.8.2 Conditional Statements . 87
3.8.3 Loops . 91
3.8.4 Determinate Loops 95
3.8.5 Multiple Selections—The switch Statement 99
3.8.6 Statements That Break Control Flow 102
3.9 Big Numbers 105
3.10 Arrays 107
3.10.1 The “for each” Loop 109
3.10.2 Array Initializers and Anonymous Arrays 110
3.10.3 Array Copying . 111
3.10.4 Command-Line Parameters . 112
3.10.5 Array Sorting 113
3.10.6 Multidimensional Arrays . 116
3.10.7 Ragged Arrays . 120
Chapter 4: Objects and Classes 125
4.1 Introduction to Object-Oriented Programming 126
4.1.1 Classes . 127
4.1.2 Objects . 128
4.1.3 Identifying Classes 129
4.1.4 Relationships between Classes 129
4.2 Using Predefined Classes . 132
4.2.1 Objects and Object Variables . 132
4.2.2 The GregorianCalendar Class of the Java Library . 136
4.2.3 Mutator and Accessor Methods 138
4.3 Defining Your Own Classes . 145
4.3.1 An Employee Class 145
4.3.2 Use of Multiple Source Files 148
4.3.3 Dissecting the Employee Class . 149
4.3.4 First Steps with Constructors . 150
4.3.5 Implicit and Explicit Parameters . 152
4.3.6 Benefits of Encapsulation . 153
4.3.7 Class-Based Access Privileges . 156
4.3.8 Private Methods . 156
4.3.9 Final Instance Fields 157
4.4 Static Fields and Methods 157
4.4.1 Static Fields . 157
4.4.2 Static Constants 158
4.4.3 Static Methods 159
4.4.4 Factory Methods 161
4.4.5 The main Method 161
4.5 Method Parameters . 164
4.6 Object Construction 171
4.6.1 Overloading 171
4.6.2 Default Field Initialization . 172
4.6.3 The Constructor with No Arguments 173
4.6.4 Explicit Field Initialization . 174
4.6.5 Parameter Names 175
4.6.6 Calling Another Constructor . 176
4.6.7 Initialization Blocks . 176
4.6.8 Object Destruction and the finalizeMe
《Java核心技术 卷I:基础知识(第9版 英文版)》是经典的Java图书的全新版。这一版针对Java SE 7平台进行了全面更新。书中囊括了Java的全部基础知识,提供了大量完整且具有实际意义的应用示例,详细介绍了Java语言基础、面向对象编程、反射与代理、接口与内部类、事件监听器模型、使用SwingUI工具进行图形用户界面程序设计、打包应用程序、异常处理、登录与调试、泛型编程、集合框架、多线程等内容。
《Java核心技术 卷I:基础知识(第9版 英文版)》适合想将Java应用于实际项目的软件开发人员、高等院校教师和学生参考阅读。
Java经典图书全新版,前一版曾获得第13届Jolt生产效率大奖。
Java平台的专业指南,新版做了全面更新,体现了Java SE 7的变化,将对Java SE 7新特性的完整描述融入对Java基本概念的精辟阐述中。
本书专为做实际项目的程序员编写,是一本真实可信、不偏不倚且简单直接的Java教程,书中使用了全面测试过的代码示例来阐述关键的Java语言与库的特性,体现了极佳的编程实践。
两位作者均是业内专业人员,有丰富的写作和实战经验。
书籍详细信息 | |||
书名 | Java核心技术站内查询相似图书 | ||
9787115380371 如需购买下载《Java核心技术》pdf扫描版电子书或查询更多相关信息,请直接复制isbn,搜索即可全网搜索该ISBN | |||
出版地 | 北京 | 出版单位 | 人民邮电出版社 |
版次 | 2版 | 印次 | 1 |
定价(元) | 109.0 | 语种 | 英文 |
尺寸 | 24 × 19 | 装帧 | 平装 |
页数 | 502 | 印数 | 2500 |
Java核心技术是人民邮电出版社于2015.1出版的中图分类号为 TP312 的主题关于 JAVA语言-程序设计-英文 的书籍。
(美) 霍斯特曼 (Horstmann,C.S.) , (美) 科奈尔 (Cornell,G.) , 著
(美) 霍斯特曼 (Horstmann,C.S.) , (美) 康奈尔 (Cornell,G.) , 著
(美) 霍斯特曼 (Horstmann,C.S.) , (美) 科耐尔 (Cornell,G.) , 著
(美) 霍斯特曼 (Horstmann,C.S) , (美) 康奈尔 (Cornell,G.) , 著
(美) 霍斯特曼 (Horstmann,C.S.) , 著
(美) 霍斯特曼 (Horstmann,C.S.) , (美) 科奈尔 (Cornell,G.) , 著
(美) 霍斯特曼 (Horstmann,C.S.) , (美) 康奈尔 (Cornell,G.) , 著
(美) 昊斯特曼 (Horstmann,C.S.) , 著
(美) 昊斯特曼 (Horstmann,C.S.) , 科内尔 (Cornell,G.) , 著