Java程序设计教程:英文版9787121331046 正版新书希望阶梯图书专营店 mobi 下载 网盘 caj lrf pdf txt 阿里云

Java程序设计教程:英文版9787121331046 正版新书希望阶梯图书专营店电子书下载地址
- 文件名
- [epub 下载] Java程序设计教程:英文版9787121331046 正版新书希望阶梯图书专营店 epub格式电子书
- [azw3 下载] Java程序设计教程:英文版9787121331046 正版新书希望阶梯图书专营店 azw3格式电子书
- [pdf 下载] Java程序设计教程:英文版9787121331046 正版新书希望阶梯图书专营店 pdf格式电子书
- [txt 下载] Java程序设计教程:英文版9787121331046 正版新书希望阶梯图书专营店 txt格式电子书
- [mobi 下载] Java程序设计教程:英文版9787121331046 正版新书希望阶梯图书专营店 mobi格式电子书
- [word 下载] Java程序设计教程:英文版9787121331046 正版新书希望阶梯图书专营店 word格式电子书
- [kindle 下载] Java程序设计教程:英文版9787121331046 正版新书希望阶梯图书专营店 kindle格式电子书
寄语:
正版图书保证质量 七天无理由退货让您购物无忧
内容简介:
暂无相关简介,正在全力查找中!
书籍目录:
Contentr>Chapter 1 Introduction 1
1.1 Computer Processing 2
Software Categories 3
Digital Computers 5
Binary Numbers 7
1.2 Hardware Components 10
Computer Architecture 11
Input/Output Devices 12
Main Memory and Secondary Memory 13
The Central Processing Unit 17
1.3 Networks
Network Connecti***
Local-Area Networks and Wide-Area Networks 22
The Inter 23
The World Wide Web 24
Uniform Resource Locators 25
1.4 The Java Programming Language 26
A Java Program 28
Comments 30
Identifiers and Reserved Words 31
White Space 34
1.5 Program Development 36
Programming Language Levels 36
Editors, Compilers, and Interpreters 39
Development Environments 40
Syntax and Semantics 41
Errors 42
1.6 Object-Oriented Programming 44
Problem Solving 45
Object-Oriented Software Principles 46
Chapter 2 Data and Expressi*** 57
2.1 Character Strings 58
The print and println Methods 58
String Concatenation 60
Escape Sequences 63
2.2 Variables and Assignment 65
Variables 65
The Assignment Statement 67
C***tants 69
2.3 Primitive Data Types 71
Integers and Floating Points 71
Characters 73
Booleans 74
2.4 Expressi*** 75
Arithmetic ***s 75
*** Precedence 76
Increment and Decrement ***s 80
Assignment ***s 81
2.5 Data Conversion 83
Conversion Techniques 85
2.6 In***ctive Programs 87
The Scanner Class 87
2.7 Graphics 92
Coordinate Systems 92
Representing Color 94
2.8 Applets 95
Executing Applets Using the Web 98
2.9 Drawing Shapes 99
The Graphics Class 99
Software Failure:
NASA Mars Climate Orbiter and Polar Lander 111
Chapter 3 Using Classes and Objects 113
3.1 Creating Objects 114
Aliases 116
3.2 The String Class 118
3.3 Packages 122
The import Declaration 124
3.4 The Random Class 126
3.5 The Math Class 129
3.6 Formatting Output 132
The NumberFormat Class 132
The DecimalFormat Class 134
The printf Method 135
3.7 Enumerated Types 138
3.8 Wrapper Classes 141
Autoboxing 143
3.9 Components and Containers 143
Frames and Panels 144
3.10 Nested Panels 148
3.11 Images 151
Chapter 4 Writing Classes 159
4.1 Classes and Objects Revisited 160
4.2 Anatomy of a Class 162
Instance Data 167
UML Class Diagrams 167
4.3 Encapsulation 169
Viility Modifiers 170
Accessors and Mutators 171
4.4 Anatomy of a Method 172
The return Statement 174
Parameters 175
Local Data 175
Bank Account Example 176
4.5 C***tructors Revisited 181
4.6 Graphical Objects 182
4.7 Graphical User Interfaces 191
4.8 Butt*** 192
4.9 Text Fields 196
Software Failure:
Denver Airport Baggage Handling System 5
Chapter 5 Conditionals and Loops 7
5.1 Boolean Expressi*** 8
Equality and Relational ***s 9
Logical ***s 210
5.2 The if Statement 213
The if-else Statement 216
Using Block Statements 219
Nested if Statements 223
5.3 Comparing Data 226
Comparing Floats 226
Comparing Characters 227
Comparing Objects 228
5.4 The while Statement 230
Infinite Loops 234
Nested Loops 236
The break and continue Statements 239
5.5 I***tors 241
Reading Text Files 242
5.6 The ArrayList Class 245
5.7 Determining Event Sources 248
5.8 C heck Boxes and Radio Butt*** 251
Check Boxes 251
Radio Butt*** 255
Software Failure:
Therac-25 267
Chapter 6 More Conditionals and Loops 269
6.1 The switch Statement 270
6.2 The Conditional *** 274
6.3 The do Statement 275
*** The for Statement 279
The for-each Loop 282
Comparing Loops 284
6.5 Drawing with Loops and Conditionals 285
6.6 Dialog Boxes 291
Chapter 7 Object-Oriented Design 301
7.1 Software Development Activities 302
7.2 Identifying Classes and Objects 303
Assigning Responilities 305
7.3 Static Class Members 305
Static Variables 306
Static Methods 306
7.4 C lass Relati***hips 310
Dependency 310
Dependencies Among Objects of the Same Class 310
Aggregation 316
The this Reference 3
7.5 Interfaces 322
The Comparable Interface 327
The I***tor Interface 328
7.6 Enumerated Types Revisited 329
7.7 Method Design 332
Method Decomposition 333
Method Parameters Revisited 338
7.8 Method Overloading 343
7.9 Testing 345
Reviews 346
Defect Testing 346
7.10 GUI Design 349
7.11 Layout Managers 350
Flow Layout 352
Border Layout 356
Grid Layout 359
Box Layout 361
7.12 Borders 365
7.13 C ontainment Hierarchies 369
Software Failure:
03 Northeast Blackout 377
Chapter 8 A rrays 379
8.1 A rray Elements 380
8.2 Declaring and Using Arrays 381
Bounds Che 384
Alternate Array Syntax 389
Initializer Lists 389
Arrays as Parameters 390
8.3 A rrays of Objects 392
8.4 C ommand-Line Arguments 402
8.5 Variable Length Parameter Lists 404
8.6 Two-Dimensional Arrays 408
Multidimensional Arrays 412
8.7 P olyg*** and Polylines 413
The Polygon Class 416
8.8 Mouse Events 418
8.9 Key Events 427
Software Failure:
LA Air Traffic Control 441
Chapter 9 Inheritance 443
9.1 C reating Subclasses 444
The protected Modifier 447
The super Reference 450
Multiple Inheritance 453
9.2 Overriding Methods 455
Shadowing Variables 457
9.3 C lass Hierarchies 458
The Object Class 460
Abstract Classes 461
Interface Hierarchies 463
9.4 Viility 463
9.5 Designing for Inheritance 466
Restricting Inheritance 467
9.6 The Component Class Hierarchy 468
9.7 Extending Adapter Classes 471
9.8 The Timer Class 475
Software Failure:
Ariane 5 Flight 501 485
Chapter 10 P olymorphism 487
10.1 Late Binding 488
10.2 P olymorphism via Inheritance 489
10.3 P olymorphism via Interfaces 502
10.4 Sorting 504
Selection Sort 505
Insertion Sort 511
Comparing Sorts 512
10.5 Searching 513
Linear Search 513
Binary Search 515
Comparing Searches 519
10.6 Designing for Polymorphism 519
10.7 Event Processing 521
10.8 F ile Choosers 522
10.9 C olor Choosers 525
10.10 Sliders 527
Chapter 11 Excepti*** 537
11.1 Exception Handling 538
11.2 Uncaught Excepti*** 539
11.3 The try-catch Statement 540
The finally Clause 544
11.4 Exception Propagation 545
11.5 The Exception Class Hierarchy 549
Checked and Unchecked Excepti*** 552
11.6 I/O Excepti*** 553
11.7 Tool Tips and Mnemonics 557
11.8 C ombo Boxes 564
11.9 Scroll Panes 569
11.10 Split Panes 572
Chapter 12 R ecursion 583
12.1 R ecursive Thi 584
Infinite Recursion 584
Recursion in Math 585
12.2 R ecursive Programming 586
Recursion vs. I***tion 589
Direct vs. Indirect Recursion 589
12.3 Using Recursion 590
Traversing a Maze 591
The Towers of Hanoi 596
12.4 R ecursion in Graphics 601
Tiled Pictures 601
Fractals 604
Chapter 13 Collecti*** 617
13.1 C ollecti*** and Data Structures 618
Separating Interface from Implementation 618
13.2 Dynamic Representati*** 619
Dynamic Structures 619
A Dynamically Linked List 6
Other Dynamic List Representati*** 625
13.3 Linear Data Structures 627
Queues 627
Stacks 628
13.4 Non-Linear Data Structures 631
Trees 631
Graphs 632
13.5 The Java Collecti*** API 634
Generics 634
Appendix AGlossary 641
Appendix B Number Systems 665
Appendix CThe Unicode Character Set 673
Appendix D Java ***s 677
Appendix E Java Modifiers 683
Appendix FJava Coding Guidelines 687
Appendix G Java Applets 693
Appendix H R egular Expressi*** 695
Appendix I Javadoc Documentation Generator 697
Appendix J The PaintBox Project 703
Appendix K GUI Events 715
Appendix L Java Syntax 719
Appendix M The Java Class Library 733
Appendix N A nswers to Self-Review Questi*** 735
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
暂无原文赏析,正在全力查找中!
其它内容:
暂无其它内容!
网站评分
书籍多样性:5分
书籍信息完全性:9分
网站更新速度:5分
使用便利性:6分
书籍清晰度:6分
书籍格式兼容性:9分
是否包含广告:3分
加载速度:3分
安全性:7分
稳定性:3分
搜索功能:8分
下载便捷性:3分
下载点评
- 无广告(66+)
- 赞(579+)
- 好评多(324+)
- 品质不错(408+)
- 一般般(314+)
- 排版满分(324+)
- 快捷(606+)
- 博大精深(671+)
- 内容齐全(114+)
- 无多页(531+)
- 差评少(81+)
- 少量广告(262+)
- 下载速度快(229+)
下载评价
- 网友 居***南:
请问,能在线转换格式吗?
- 网友 步***青:
。。。。。好
- 网友 利***巧:
差评。这个是收费的
- 网友 敖***菡:
是个好网站,很便捷
- 网友 邱***洋:
不错,支持的格式很多
- 网友 仰***兰:
喜欢!很棒!!超级推荐!
- 网友 辛***玮:
页面不错 整体风格喜欢
- 网友 相***儿:
你要的这里都能找到哦!!!
- 网友 通***蕊:
五颗星、五颗星,大赞还觉得不错!~~
喜欢"Java程序设计教程:英文版9787121331046 正版新书希望阶梯图书专营店"的人也看了
9787115360922 mobi 下载 网盘 caj lrf pdf txt 阿里云
五年中考三年模拟中考道德与法治全国版2024新版 mobi 下载 网盘 caj lrf pdf txt 阿里云
伟大之翼 (美)路易斯·A·塔塔格里亚 著,李京平 译 华艺出版社【正版】 mobi 下载 网盘 caj lrf pdf txt 阿里云
自珍集 mobi 下载 网盘 caj lrf pdf txt 阿里云
【官方直营】西班牙语语言通论 mobi 下载 网盘 caj lrf pdf txt 阿里云
陇右文化论丛(第一辑) mobi 下载 网盘 caj lrf pdf txt 阿里云
第8届世界数独锦标赛赛题集 mobi 下载 网盘 caj lrf pdf txt 阿里云
迷宫书店 港台原版 罗智成 联经出版 诗歌 mobi 下载 网盘 caj lrf pdf txt 阿里云
兰亭序(绘本版) 叶露盈 中信出版社 9787521711479 mobi 下载 网盘 caj lrf pdf txt 阿里云
毛晋交游研究 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 吉林省交通旅游图-新版 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 学生干部素质培养丛书--如何办好班级的黑板报 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 反"三违"防事故企业员工警示教育读本 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 露华传前尘恨无爱 上海社会科学院出版社 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 混凝土结构与砌体结构作业集 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 武则天传 林语堂 著 陕西师范大学出版社【正版书】 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 王家大院楹联匾额诠注/王家大院丛书 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 全新 教育心理学教师教育通识系列规划教材刘冬梅高全胜主编北京师范大学出版社正版书籍 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 孙子兵法(下 八年级下) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 看星星的人 mobi 下载 网盘 caj lrf pdf txt 阿里云
书籍真实打分
故事情节:7分
人物塑造:6分
主题深度:4分
文字风格:5分
语言运用:8分
文笔流畅:3分
思想传递:4分
知识深度:9分
知识广度:4分
实用性:7分
章节划分:5分
结构布局:9分
新颖与独特:4分
情感共鸣:7分
引人入胜:4分
现实相关:5分
沉浸感:8分
事实准确性:4分
文化贡献:7分