-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjavanotes_toc.rst
576 lines (533 loc) · 30.7 KB
/
javanotes_toc.rst
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
.. table of contents for java notes
.. _jn: http://math.hws.edu/javanotes/
.. |jn| replace:: JavaNotes
.. _jn1: http://math.hws.edu/javanotes/c1/index.html
.. |jn1| replace:: `1 : Overview: The Mental Landscape`
.. _jn1.1: http://math.hws.edu/javanotes/c1/s1.html
.. |jn1.1| replace:: `1.1 : The Fetch and Execute Cycle: Machine Language`
.. _jn1.2: http://math.hws.edu/javanotes/c1/s2.html
.. |jn1.2| replace:: `1.2 : Asynchronous Events: Polling Loops and Interrupts`
.. _jn1.3: http://math.hws.edu/javanotes/c1/s3.html
.. |jn1.3| replace:: `1.3 : The Java Virtual Machine`
.. _jn1.4: http://math.hws.edu/javanotes/c1/s4.html
.. |jn1.4| replace:: `1.4 : Fundamental Building Blocks of Programs`
.. _jn1.5: http://math.hws.edu/javanotes/c1/s5.html
.. |jn1.5| replace:: `1.5 : Objects and Object-oriented Programming`
.. _jn1.6: http://math.hws.edu/javanotes/c1/s6.html
.. |jn1.6| replace:: `1.6 : The Modern User Interface`
.. _jn1.7: http://math.hws.edu/javanotes/c1/s7.html
.. |jn1.7| replace:: `1.7 : The Internet and Beyond`
.. _jn2 : http://math.hws.edu/javanotes/c2/index.html
.. |jn2| replace:: `2 : Programming in the Small I: Names and Things`
.. _jn2.1: http://math.hws.edu/javanotes/c2/s1.html
.. |jn2.1| replace:: `2.1 : The Basic Java Application`
.. _jn2.2: http://math.hws.edu/javanotes/c2/s2.html
.. |jn2.2| replace:: `2.2 : Variables and the Primitive Types`
.. _jn2.2.1: http://math.hws.edu/javanotes/c2/s2.html#basics.2.1
.. |jn2.2.1| replace:: `2.2.1 : Variables`
.. _jn2.2.2: http://math.hws.edu/javanotes/c2/s2.html#basics.2.2
.. |jn2.2.2| replace:: `2.2.2 : Types and Literals`
.. _jn2.2.3: http://math.hws.edu/javanotes/c2/s2.html#basics.2.3
.. |jn2.2.3| replace:: `2.2.3 : Variables in Programs`
.. _jn2.3: http://math.hws.edu/javanotes/c2/s3.html
.. |jn2.3| replace:: `2.3 : Strings, Objects, Enums, and Subroutines`
.. _jn2.3.1: http://math.hws.edu/javanotes/c2/s3.html#basics.3.1
.. |jn2.3.1| replace:: `2.3.1 : Built-in Subroutines and Functions`
.. _jn2.3.2: http://math.hws.edu/javanotes/c2/s3.html#basics.3.2
.. |jn2.3.2| replace:: `2.3.2 : Operations on Strings`
.. _jn2.3.3: http://math.hws.edu/javanotes/c2/s3.html#basics.3.3
.. |jn2.3.3| replace:: `2.3.3 : Introduction to Enums`
.. _jn2.4: http://math.hws.edu/javanotes/c2/s4.html
.. |jn2.4| replace:: `2.4 : Text Input and Output`
.. _jn2.4.1: http://math.hws.edu/javanotes/c2/s4.html#basics.4.1
.. |jn2.4.1| replace:: `2.4.1 : A First Text Input Example`
.. _jn2.4.2: http://math.hws.edu/javanotes/c2/s4.html#basics.4.2
.. |jn2.4.2| replace:: `2.4.2 : Text Output`
.. _jn2.4.3: http://math.hws.edu/javanotes/c2/s4.html#basics.4.3
.. |jn2.4.3| replace:: `2.4.3 : TextIO Input Functions`
.. _jn2.4.4 : http://math.hws.edu/javanotes/c2/s4.html#basics.4.4
.. |jn2.4.4| replace:: `2.4.4 : Formatted Output`
.. _jn2.4.5 : http://math.hws.edu/javanotes/c2/s4.html#basics.4.5
.. |jn2.4.5| replace:: `2.4.5 : Introduction to File I/O`
.. _jn2.4.6 : http://math.hws.edu/javanotes/c2/s4.html#basics.4.6
.. |jn2.4.6| replace:: `2.4.6 : Using Scanner for Input`
.. _jn2.5 : http://math.hws.edu/javanotes/c2/s5.html
.. |jn2.5| replace:: `2.5 : Details of Expressions`
.. _jn2.5.1 : http://math.hws.edu/javanotes/c2/s5.html#basics.5.1
.. |jn2.5.1| replace:: `2.5.1 : Arithmetic Operators`
.. _jn2.5.2 : http://math.hws.edu/javanotes/c2/s5.html#basics.5.2
.. |jn2.5.2| replace:: `2.5.2 : Increment and Decrement`
.. _jn2.5.3 : http://math.hws.edu/javanotes/c2/s5.html#basics.5.3
.. |jn2.5.3| replace:: `2.5.3 : Relational Operators`
.. _jn2.5.4 : http://math.hws.edu/javanotes/c2/s5.html#basics.5.4
.. |jn2.5.4| replace:: `2.5.4 : Boolean Operators`
.. _jn2.5.5: http://math.hws.edu/javanotes/c2/s5.html#basics.5.5
.. |jn2.5.5| replace:: `2.5.5 : Conditional Operator`
.. _jn2.5.6: http://math.hws.edu/javanotes/c2/s5.html#basics.5.6
.. |jn2.5.6| replace:: `2.5.6 : Assignment Operators and Type-Casts`
.. _jn2.5.7: http://math.hws.edu/javanotes/c2/s5.html#basics.5.7
.. |jn2.5.7| replace:: `2.5.7 : Type Conversion of Strings`
.. _jn2.5.8: http://math.hws.edu/javanotes/c2/s5.html#basics.5.8
.. |jn2.5.8| replace:: `2.5.8 : Precedence Rules`
.. _jn2.6: http://math.hws.edu/javanotes/c2/s6.html
.. |jn2.6| replace:: `2.6 : Programming Environments`
.. _jn2.6.1: http://math.hws.edu/javanotes/c2/s6.html#basics.6.1
.. |jn2.6.1| replace:: `2.6.1 : Java Development Kit`
.. _jn2.6.2: http://math.hws.edu/javanotes/c2/s6.html#basics.6.2
.. |jn2.6.2| replace:: `2.6.2 : Command Line Environment`
.. _jn2.6.3: http://math.hws.edu/javanotes/c2/s6.html#basics.6.3
.. |jn2.6.3| replace:: `2.6.3 : IDEs and Eclipse`
.. _jn2.6.4: http://math.hws.edu/javanotes/c2/s6.html#basics.6.4
.. |jn2.6.4| replace:: `2.6.4 : The Problem of Packages`
.. _jn3 : http://math.hws.edu/javanotes/c3/index.html
.. |jn3| replace:: `3 : Programming in the Small II: Control`
.. _jn3.1: http://math.hws.edu/javanotes/c3/s1.html
.. |jn3.1| replace:: `3.1 : Blocks, Loops, and Branches`
.. _jn3.1.1: http://math.hws.edu/javanotes/c3/s1.html#control.1.1
.. |jn3.1.1| replace:: `3.1.1 : Blocks`
.. _jn3.1.2: http://math.hws.edu/javanotes/c3/s1.html#control.1.2
.. |jn3.1.2| replace:: `3.1.2 : The Basic While Loop`
.. _jn3.1.3 : http://math.hws.edu/javanotes/c3/s1.html#control.1.3
.. |jn3.1.3| replace:: `3.1.3 : The Basic If Statement`
.. _jn3.2 : http://math.hws.edu/javanotes/c3/s2.html
.. |jn3.2| replace:: `3.2 : Algorithm Development`
.. _jn3.2.1 : http://math.hws.edu/javanotes/c3/s2.html#control.2.1
.. |jn3.2.1| replace:: `3.2.1 : Pseudocode and Stepwise Refinement`
.. _jn3.2.2 : http://math.hws.edu/javanotes/c3/s2.html#control.2.2
.. |jn3.2.2| replace:: `3.2.2 : The 3N+1 Problem`
.. _jn3.2.3 : http://math.hws.edu/javanotes/c3/s2.html#control.2.3
.. |jn3.2.3| replace:: `3.2.3 : Coding, Testing, Debugging`
.. _jn3.3 : http://math.hws.edu/javanotes/c3/s3.html
.. |jn3.3| replace:: `3.3 : The while and do..while Statements`
.. _jn3.3.1 : http://math.hws.edu/javanotes/c3/s3.html#control.3.1
.. |jn3.3.1| replace:: `3.3.1 : The while Statement`
.. _jn3.3.2 : http://math.hws.edu/javanotes/c3/s3.html#control.3.2
.. |jn3.3.2| replace:: `3.3.2 : The do..while Statement`
.. _jn3.3.3 : http://math.hws.edu/javanotes/c3/s3.html#control.3.3
.. |jn3.3.3| replace:: `3.3.3 : break and continue`
.. _jn3.4 : http://math.hws.edu/javanotes/c3/s4.html
.. |jn3.4| replace:: `3.4 : The for Statement`
.. _jn3.4.1 : http://math.hws.edu/javanotes/c3/s4.html#control.4.1
.. |jn3.4.1| replace:: `3.4.1 : For Loops`
.. _jn3.4.2 : http://math.hws.edu/javanotes/c3/s4.html#control.4.2
.. |jn3.4.2| replace:: `3.4.2 : Example: Counting Divisors`
.. _jn3.4.3 : http://math.hws.edu/javanotes/c3/s4.html#control.4.3
.. |jn3.4.3| replace:: `3.4.3 : Nested for Loops`
.. _jn3.4.4 : http://math.hws.edu/javanotes/c3/s4.html#control.4.4
.. |jn3.4.4| replace:: `3.4.4 : Enums and for-each Loops`
.. _jn3.5 : http://math.hws.edu/javanotes/c3/s5.html
.. |jn3.5| replace:: `3.5 : The if Statement`
.. _jn3.5.1 : http://math.hws.edu/javanotes/c3/s5.html#control.5.1
.. |jn3.5.1| replace:: `3.5.1 : The Dangling else Problem`
.. _jn3.5.2 : http://math.hws.edu/javanotes/c3/s5.html#control.5.2
.. |jn3.5.2| replace:: `3.5.2 : The if...else if Construction`
.. _jn3.5.3 : http://math.hws.edu/javanotes/c3/s5.html#control.5.3
.. |jn3.5.3| replace:: `3.5.3 : If Statement Examples`
.. _jn3.5.4 : http://math.hws.edu/javanotes/c3/s5.html#control.5.4
.. |jn3.5.4| replace:: `3.5.4 : The Empty Statement`
.. _jn3.6 : http://math.hws.edu/javanotes/c3/s6.html
.. |jn3.6| replace:: `3.6 : The switch Statement`
.. _jn3.6.1 : http://math.hws.edu/javanotes/c3/s6.html#control.6.1
.. |jn3.6.1| replace:: `3.6.1 : The Basic switch Statement`
.. _jn3.6.2 : http://math.hws.edu/javanotes/c3/s6.html#control.6.2
.. |jn3.6.2| replace:: `3.6.2 : Menus and switch Statements`
.. _jn3.6.3 : http://math.hws.edu/javanotes/c3/s6.html#control.6.3
.. |jn3.6.3| replace:: `3.6.3 : Enums in switch Statements`
.. _jn3.6.4 : http://math.hws.edu/javanotes/c3/s6.html#control.6.4
.. |jn3.6.4| replace:: `3.6.4 : Definite Assignment`
.. _jn3.7 : http://math.hws.edu/javanotes/c3/s7.html
.. |jn3.7| replace:: `3.7 : Introduction to Exceptions and try..catch`
.. _jn3.7.1 : http://math.hws.edu/javanotes/c3/s7.html#control.7.1
.. |jn3.7.1| replace:: `3.7.1 : Exceptions`
.. _jn3.7.2 : http://math.hws.edu/javanotes/c3/s7.html#control.7.2
.. |jn3.7.2| replace:: `3.7.2 : try..catch`
.. _jn3.7.3 : http://math.hws.edu/javanotes/c3/s7.html#control.7.3
.. |jn3.7.3| replace:: `3.7.3 : Exceptions in TextIO`
.. _jn3.8 : http://math.hws.edu/javanotes/c3/s8.html
.. |jn3.8| replace:: `3.8 : Introduction to GUI Programming`
.. _jn4 : http://math.hws.edu/javanotes/c4/index.html
.. |jn4| replace:: `4 : Programming in the Large I: Subroutines`
.. _jn4.1 : http://math.hws.edu/javanotes/c4/s1.html
.. |jn4.1| replace:: `4.1 : Black Boxes`
.. _jn4.2 : http://math.hws.edu/javanotes/c4/s2.html
.. |jn4.2| replace:: `4.2 : Static Subroutines and Static Variables`
.. _jn4.2.1 : http://math.hws.edu/javanotes/c4/s2.html#subroutines.2.1
.. |jn4.2.1| replace:: `4.2.1: Subroutine Definitions`
.. _jn4.2.2 : http://math.hws.edu/javanotes/c4/s2.html#subroutines.2.2
.. |jn4.2.2| replace:: `4.2.2 : Calling Subroutines`
.. _jn4.2.3 : http://math.hws.edu/javanotes/c4/s2.html#subroutines.2.3
.. |jn4.2.3| replace:: `4.2.3 : Subroutines in Programs`
.. _jn4.2.4 : http://math.hws.edu/javanotes/c4/s2.html#subroutines.2.4
.. |jn4.2.4| replace:: `4.2.4 : Member Variables`
.. _jn4.3 : http://math.hws.edu/javanotes/c4/s3.html
.. |jn4.3| replace:: `4.3 : Parameters`
.. _jn4.3.1 : http://math.hws.edu/javanotes/c4/s3.html#subroutines.3.1
.. |jn4.3.1| replace:: `4.3.1 : Using Parameters`
.. _jn4.3.2 : http://math.hws.edu/javanotes/c4/s3.html#subroutines.3.2
.. |jn4.3.2| replace:: `4.3.2 : Formal and Actual Parameters`
.. _jn4.3.3 : http://math.hws.edu/javanotes/c4/s3.html#subroutines.3.3
.. |jn4.3.3| replace:: `4.3.3 : Overloading`
.. _jn4.3.4 : http://math.hws.edu/javanotes/c4/s3.html#subroutines.3.4
.. |jn4.3.4| replace:: `4.3.4 : Subroutine Examples`
.. _jn4.3.5 : http://math.hws.edu/javanotes/c4/s3.html#subroutines.3.5
.. |jn4.3.5| replace:: `4.3.5 : Throwing Exceptions`
.. _jn4.3.6 : http://math.hws.edu/javanotes/c4/s3.html#subroutines.3.6
.. |jn4.3.6| replace:: `4.3.6 : Global and Local Variables`
.. _jn4.4 : http://math.hws.edu/javanotes/c4/s4.html
.. |jn4.4| replace:: `4.4 : Return Values`
.. _jn4.4.1 : http://math.hws.edu/javanotes/c4/s4.html#subroutines.4.1
.. |jn4.4.1| replace:: `4.4.1 : The return statement`
.. _jn4.4.2 : http://math.hws.edu/javanotes/c4/s4.html#subroutines.4.2
.. |jn4.4.2| replace:: `4.4.2 : Function Examples`
.. _jn4.4.3 : http://math.hws.edu/javanotes/c4/s4.html#subroutines.4.3
.. |jn4.4.3| replace:: `4.4.3 : 3N+1 Revisited`
.. _jn4.5 : http://math.hws.edu/javanotes/c4/s5.html
.. |jn4.5| replace:: `4.5 : APIs, Packages, and Javadoc`
.. _jn4.5.1 : http://math.hws.edu/javanotes/c4/s5.html#subroutines.5.1
.. |jn4.5.1| replace:: `4.5.2 : Toolboxes`
.. _jn4.5.2 : http://math.hws.edu/javanotes/c4/s5.html#subroutines.5.2
.. |jn4.5.2| replace:: `4.5.3 : Java's Standard Packages`
.. _jn4.5.3 : http://math.hws.edu/javanotes/c4/s5.html#subroutines.5.3
.. |jn4.5.3| replace:: `4.5.4 : Using Classes from Packages`
.. _jn4.5.4 : http://math.hws.edu/javanotes/c4/s5.html#subroutines.5.4
.. |jn4.5.4| replace:: `4.5.4 : Javadoc`
.. _jn4.6 : http://math.hws.edu/javanotes/c4/s6.html
.. |jn4.6| replace:: `4.6 : More on Program Design`
.. _jn4.6.1 : http://math.hws.edu/javanotes/c4/s6.html#subroutines.6.1
.. |jn4.6.1| replace:: `4.6.1 : Preconditions and Postconditions`
.. _jn4.6.2 : http://math.hws.edu/javanotes/c4/s6.html#subroutines.6.2
.. |jn4.6.2| replace:: `4.6.2 : A Design Example`
.. _jn4.6.3 : http://math.hws.edu/javanotes/c4/s6.html#subroutines.6.3
.. |jn4.6.3| replace:: `4.6.3 : The Program`
.. _jn4.7 : http://math.hws.edu/javanotes/c4/s7.html
.. |jn4.7| replace:: `4.7 : The Truth About Declarations`
.. _jn4.7.1 : http://math.hws.edu/javanotes/c4/s7.html#subroutines.7.1
.. |jn4.7.1| replace:: `4.7.1 : Initialization in Declarations`
.. _jn4.7.2 : http://math.hws.edu/javanotes/c4/s7.html#subroutines.7.2
.. |jn4.7.2| replace:: `4.7.2 : Named Constants`
.. _jn4.7.3 : http://math.hws.edu/javanotes/c4/s7.html#subroutines.7.3
.. |jn4.7.3| replace:: `4.7.3 : Naming and Scope Rules`
.. _jn4.7.4 : http://math.hws.edu/javanotes/c4/exercises.html
.. _jn5 : http://math.hws.edu/javanotes/c5/index.html
.. |jn5| replace:: `5 : Programming in the Large II: Objects and Classes`
.. _jn5.1 : http://math.hws.edu/javanotes/c5/s1.html
.. |jn5.1| replace:: `5.1 : Objects, Instance Methods, and Instance Variables`
.. _jn5.1.1 : http://math.hws.edu/javanotes/c5/s1.html#OOP.1.1
.. |jn5.1.1| replace:: `5.1.1 : Objects, Classes, and Instances`
.. _jn5.1.2 : http://math.hws.edu/javanotes/c5/s1.html#OOP.1.2
.. |jn5.1.2| replace:: `5.1.2 : Fundamentals of Objects`
.. _jn5.1.3 : http://math.hws.edu/javanotes/c5/s1.html#OOP.1.3
.. |jn5.1.3| replace:: `5.1.3 : Getters and Setters`
.. _jn5.2 : http://math.hws.edu/javanotes/c5/s2.html
.. |jn5.2| replace:: `5.2 : Constructors and Object Initialization`
.. _jn5.2.1 : http://math.hws.edu/javanotes/c5/s2.html#OOP.2.1
.. |jn5.2.1| replace:: `5.2.1 : Initializing Instance Variables`
.. _jn5.2.2 : http://math.hws.edu/javanotes/c5/s2.html#OOP.2.2
.. |jn5.2.2| replace:: `5.2.2 : Constructors`
.. _jn5.2.3 : http://math.hws.edu/javanotes/c5/s2.html#OOP.2.3
.. |jn5.2.3| replace:: `5.2.3 : Garbage Collection`
.. _jn5.3 : http://math.hws.edu/javanotes/c5/s3.html
.. |jn5.3| replace:: `5.3 : Programming with Objects`
.. _jn5.3.1 : http://math.hws.edu/javanotes/c5/s3.html#OOP.3.1
.. |jn5.3.1| replace:: `5.3.1 : Some Built-in Classes`
.. _jn5.3.2 : http://math.hws.edu/javanotes/c5/s3.html#OOP.3.2
.. |jn5.3.2| replace:: `5.3.2 : Wrapper Classes and Autoboxing`
.. _jn5.3.3 : http://math.hws.edu/javanotes/c5/s3.html#OOP.3.3
.. |jn5.3.3| replace:: `5.3.3 : The class "Object"`
.. _jn5.3.4 : http://math.hws.edu/javanotes/c5/s3.html#OOP.3.4
.. |jn5.3.4| replace:: `5.3.4 : Object-oriented Analysis and Design`
.. _jn5.4 : http://math.hws.edu/javanotes/c5/s4.html
.. |jn5.4| replace:: `5.4 : Programming Example: Card, Hand, Deck`
.. _jn5.4.1 : http://math.hws.edu/javanotes/c5/s4.html#OOP.4.1
.. |jn5.4.1| replace:: `5.4.1 : Designing the classes`
.. _jn5.4.2 : http://math.hws.edu/javanotes/c5/s4.html#OOP.4.2
.. |jn5.4.2| replace:: `5.4.2 : The Card Class`
.. _jn5.4.3 : http://math.hws.edu/javanotes/c5/s4.html#OOP.4.3
.. |jn5.4.3| replace:: `5.4.3 : Example: A Simple Card Game`
.. _jn5.5 : http://math.hws.edu/javanotes/c5/s5.html
.. |jn5.5| replace:: `5.5 : Inheritance, Polymorphism, and Abstract Classes`
.. _jn5.5.1 : http://math.hws.edu/javanotes/c5/s5.html#OOP.5.1
.. |jn5.5.1| replace:: `5.5.1 : Extending Existing Classes`
.. _jn5.5.2 : http://math.hws.edu/javanotes/c5/s5.html#OOP.5.2
.. |jn5.5.2| replace:: `5.5.2 : Inheritance and Class Hierarchy`
.. _jn5.5.3 : http://math.hws.edu/javanotes/c5/s5.html#OOP.5.3
.. |jn5.5.3| replace:: `5.5.3 : Example: Vehicles`
.. _jn5.5.4 : http://math.hws.edu/javanotes/c5/s5.html#OOP.5.4
.. |jn5.5.4| replace:: `5.5.4 : Polymorphism`
.. _jn5.5.5 : http://math.hws.edu/javanotes/c5/s5.html#OOP.5.5
.. |jn5.5.5| replace:: `5.5.5 : Abstract Classes`
.. _jn5.6 : http://math.hws.edu/javanotes/c5/s6.html
.. |jn5.6| replace:: `5.6 : this and super`
.. _jn5.6.1 : http://math.hws.edu/javanotes/c5/s6.html#OOP.6.1
.. |jn5.6.1| replace:: `5.6.1 : The Special Variable this`
.. _jn5.6.2 : http://math.hws.edu/javanotes/c5/s6.html#OOP.6.2
.. |jn5.6.2| replace:: `5.6.2 : The Special Variable super`
.. _jn5.6.3 : http://math.hws.edu/javanotes/c5/s6.html#OOP.6.3
.. |jn5.6.3| replace:: `5.6.3 : Constructors in Subclasses`
.. _jn5.7 : http://math.hws.edu/javanotes/c5/s7.html
.. |jn5.7| replace:: `5.7 : Interfaces, Nested Classes, and Other Details`
.. _jn5.7.1 : http://math.hws.edu/javanotes/c5/s7.html#OOP.7.1
.. |jn5.7.1| replace:: `5.7.1 : Interfaces`
.. _jn5.7.2 : http://math.hws.edu/javanotes/c5/s7.html#OOP.7.2
.. |jn5.7.2| replace:: `5.7.2 : Nested Classes`
.. _jn5.7.3 : http://math.hws.edu/javanotes/c5/s7.html#OOP.7.3
.. |jn5.7.3| replace:: `5.7.3 : Anonymous Inner Classes`
.. _jn5.7.4 : http://math.hws.edu/javanotes/c5/s7.html#OOP.7.4
.. |jn5.7.4| replace:: `5.7.4 : Mixing Static and Non-static`
.. _jn5.7.5 : http://math.hws.edu/javanotes/c5/s7.html#OOP.7.5
.. |jn5.7.5| replace:: `5.7.5 : Static Import`
.. _jn5.7.6 : http://math.hws.edu/javanotes/c5/s7.html#OOP.7.6
.. |jn5.7.6| replace:: `5.7.6 : Enums as Classes`
.. chapter 6 not used
.. _jn7 : http://math.hws.edu/javanotes/c7/index.html
.. |jn7| replace:: `7 : Arrays`
.. _jn7.1 : http://math.hws.edu/javanotes/c7/s1.html
.. |jn7.1| replace:: `7.1 : Creating and Using Arrays`
.. _jn7.1.1 : http://math.hws.edu/javanotes/c7/s1.html#arrays.1.1
.. |jn7.1.1| replace:: `7.1.1 : Arrays`
.. _jn7.1.2 : http://math.hws.edu/javanotes/c7/s1.html#arrays.1.2
.. |jn7.1.2| replace:: `7.1.2 : Using Arrays`
.. _jn7.1.3 : http://math.hws.edu/javanotes/c7/s1.html#arrays.1.3
.. |jn7.1.3| replace:: `7.1.3 : Array Initialization`
.. _jn7.2 : http://math.hws.edu/javanotes/c7/s2.html
.. |jn7.2| replace:: `7.2 : Programming With Arrays`
.. _jn7.2.1 : http://math.hws.edu/javanotes/c7/s2.html#arrays.2.1
.. |jn7.2.1| replace:: `7.2.1 : Arrays and for Loops`
.. _jn7.2.2 : http://math.hws.edu/javanotes/c7/s2.html#arrays.2.2
.. |jn7.2.2| replace:: `7.2.2 : Arrays and for-each Loops`
.. _jn7.2.3 : http://math.hws.edu/javanotes/c7/s2.html#arrays.2.3
.. |jn7.2.3| replace:: `7.2.3 : Array Types in Subroutines`
.. _jn7.2.4 : http://math.hws.edu/javanotes/c7/s2.html#arrays.2.4
.. |jn7.2.4| replace:: `7.2.4 : Random Access`
.. _jn7.2.5 : http://math.hws.edu/javanotes/c7/s2.html#arrays.2.5
.. |jn7.2.5| replace:: `7.2.5 : Arrays of Objects`
.. _jn7.2.6 : http://math.hws.edu/javanotes/c7/s2.html#arrays.2.6
.. |jn7.2.6| replace:: `7.2.6 : Variable Arity Methods`
.. _jn7.3 : http://math.hws.edu/javanotes/c7/s3.html
.. |jn7.3| replace:: `7.3 : Dynamic Arrays and ArrayLists`
.. _jn7.3.1 : http://math.hws.edu/javanotes/c7/s3.html#arrays.3.1
.. |jn7.3.1| replace:: `7.3.1 : Partially Full Arrays`
.. _jn7.3.2 : http://math.hws.edu/javanotes/c7/s3.html#arrays.3.2
.. |jn7.3.2| replace:: `7.3.2 : Dynamic Arrays`
.. _jn7.3.3 : http://math.hws.edu/javanotes/c7/s3.html#arrays.3.3
.. |jn7.3.3| replace:: `7.3.3 : ArrrayLists`
.. _jn7.3.4 : http://math.hws.edu/javanotes/c7/s3.html#arrays.3.4
.. |jn7.3.4| replace:: `7.3.4 : Parameterized Types`
.. _jn7.3.5 : http://math.hws.edu/javanotes/c7/s3.html#arrays.3.5
.. |jn7.3.5| replace:: `7.3.5 : Vectors`
.. _jn7.4 : http://math.hws.edu/javanotes/c7/s4.html
.. |jn7.4| replace:: `7.4 : Searching and Sorting`
.. _jn7.4.1 : http://math.hws.edu/javanotes/c7/s4.html#arrays.4.1
.. |jn7.4.1| replace:: `7.4.1 : Searching`
.. _jn7.4.2 : http://math.hws.edu/javanotes/c7/s4.html#arrays.4.2
.. |jn7.4.2| replace:: `7.4.2 : Association Lists`
.. _jn7.4.3 : http://math.hws.edu/javanotes/c7/s4.html#arrays.4.3
.. |jn7.4.3| replace:: `7.4.3 : Insertion Sort`
.. _jn7.4.4 : http://math.hws.edu/javanotes/c7/s4.html#arrays.4.4
.. |jn7.4.4| replace:: `7.4.4 : Selection Sort`
.. _jn7.4.5 : http://math.hws.edu/javanotes/c7/s4.html#arrays.4.5
.. |jn7.4.5| replace:: `7.4.5 : Unsorting`
.. _jn7.5 : http://math.hws.edu/javanotes/c7/s5.html
.. |jn7.5| replace:: `7.5 : Multi-dimensional Arrays`
.. _jn7.5.1 : http://math.hws.edu/javanotes/c7/s5.html#arrays.5.1
.. |jn7.5.1| replace:: `7.5.1 : Creating Two-dimensional Arrays`
.. _jn7.5.2 : http://math.hws.edu/javanotes/c7/s5.html#arrays.5.2
.. |jn7.5.2| replace:: `7.5.2 : Using Two-dimensional Arrays`
.. _jn7.5.3 : http://math.hws.edu/javanotes/c7/s5.html#arrays.5.3
.. |jn7.5.3| replace:: `7.5.3 : Example: Checkers`
.. _jn8 : http://math.hws.edu/javanotes/c8/index.html
.. |jn8| replace:: `8 : Correctness, Robustness, Efficiency`
.. _jn8.1 : http://math.hws.edu/javanotes/c8/s1.html
.. |jn8.1| replace:: `8.1 : Introduction to Correctness and Robustness`
.. _jn8.1.1 : http://math.hws.edu/javanotes/c8/s1.html#robustness.1.1
.. |jn8.1.1| replace:: `8.1.1 : Horror Stories`
.. _jn8.1.2 : http://math.hws.edu/javanotes/c8/s1.html#robustness.1.2
.. |jn8.1.2| replace:: `8.1.2 : Java to the Rescue`
.. _jn8.1.3 : http://math.hws.edu/javanotes/c8/s1.html#robustness.1.3
.. |jn8.1.3| replace:: `8.1.3 : Problems Remain in Java`
.. _jn8.2 : http://math.hws.edu/javanotes/c8/s2.html
.. |jn8.2| replace:: `8.2 : Writing Correct Programs`
.. _jn8.2.1 : http://math.hws.edu/javanotes/c8/s2.html#robustness.2.1
.. |jn8.2.1| replace:: `8.2.1 : Provably Correct Programs`
.. _jn8.2.2 : http://math.hws.edu/javanotes/c8/s2.html#robustness.2.2
.. |jn8.2.2| replace:: `8.2.2 : Robust Handling of Input`
.. _jn8.3 : http://math.hws.edu/javanotes/c8/s3.html
.. |jn8.3| replace:: `8.3 : Exceptions and try..catch`
.. _jn8.3.1 : http://math.hws.edu/javanotes/c8/s3.html#robustness.3.1
.. |jn8.3.1| replace:: `8.3.1 : Exceptions and Exception Classes`
.. _jn8.3.2 : http://math.hws.edu/javanotes/c8/s3.html#robustness.3.2
.. |jn8.3.2| replace:: `8.3.2 : The try Statement`
.. _jn8.3.3 : http://math.hws.edu/javanotes/c8/s3.html#robustness.3.3
.. |jn8.3.3| replace:: `8.3.3 : Throwing Exceptions`
.. _jn8.3.4 : http://math.hws.edu/javanotes/c8/s3.html#robustness.3.4
.. |jn8.3.4| replace:: `8.3.4 : Mandatory Exception Handling`
.. _jn8.3.5 : http://math.hws.edu/javanotes/c8/s3.html#robustness.3.5
.. |jn8.3.5| replace:: `8.3.5 : Programming with Exceptions`
.. _jn8.4 : http://math.hws.edu/javanotes/c8/s4.html
.. |jn8.4| replace:: `8.4 : Assertions and Annotations`
.. _jn8.4.1 : http://math.hws.edu/javanotes/c8/s4.html#robustness.4.1
.. |jn8.4.1| replace:: `8.4.1 : Assertions`
.. _jn8.4.2 : http://math.hws.edu/javanotes/c8/s4.html#robustness.4.2
.. |jn8.4.2| replace:: `8.4.2 : Annotations`
.. _jn8.5 : http://math.hws.edu/javanotes/c8/s5.html
.. |jn8.5| replace:: `8.5 : Analysis of Algorithms`
.. _jn9 : http://math.hws.edu/javanotes/c9/index.html
.. |jn9| replace:: `9 : Linked Data Structures and Recursion`
.. _jn9.1 : http://math.hws.edu/javanotes/c9/s1.html
.. |jn9.1| replace:: `9.1 : Recursion`
.. _jn9.1.1 : http://math.hws.edu/javanotes/c9/s1.html#recursion.1.1
.. |jn9.1.1| replace:: `9.1.1 : Recursive Binary Search`
.. _jn9.1.2 : http://math.hws.edu/javanotes/c9/s1.html#recursion.1.2
.. |jn9.1.2| replace:: `9.1.2 : Towers of Hanoi`
.. _jn9.1.3 : http://math.hws.edu/javanotes/c9/s1.html#recursion.1.3
.. |jn9.1.3| replace:: `9.1.3 : A Recursive Sorting Algorithm`
.. _jn9.1.4 : http://math.hws.edu/javanotes/c9/s1.html#recursion.1.4
.. |jn9.1.4| replace:: `9.1.4 : Blob Counting`
.. _jn9.2 : http://math.hws.edu/javanotes/c9/s2.html
.. |jn9.2| replace:: `9.2 : Linked Data Structures`
.. _jn9.2.1 : http://math.hws.edu/javanotes/c9/s2.html#recursion.2.1
.. |jn9.2.1| replace:: `9.2.1 : Recursive Linking`
.. _jn9.2.2 : http://math.hws.edu/javanotes/c9/s2.html#recursion.2.2
.. |jn9.2.2| replace:: `9.2.2 : Linked Lists`
.. _jn9.2.3 : http://math.hws.edu/javanotes/c9/s2.html#recursion.2.3
.. |jn9.2.3| replace:: `9.2.3 : Basic Linked List Processing`
.. _jn9.2.4 : http://math.hws.edu/javanotes/c9/s2.html#recursion.2.4
.. |jn9.2.4| replace:: `9.2.4 : Inserting into a Linked List`
.. _jn9.2.5 : http://math.hws.edu/javanotes/c9/s2.html#recursion.2.5
.. |jn9.2.5| replace:: `9.2.5 : Deleting from a Linked List`
.. _jn9.3 : http://math.hws.edu/javanotes/c9/s3.html
.. |jn9.3| replace:: `9.3 : Stacks, Queues, and ADTs`
.. _jn9.3.1 : http://math.hws.edu/javanotes/c9/s3.html#recursion.3.1
.. |jn9.3.1| replace:: `9.3.1 : Stacks`
.. _jn9.3.2 : http://math.hws.edu/javanotes/c9/s3.html#recursion.3.2
.. |jn9.3.2| replace:: `9.3.2 : Queues`
.. _jn9.3.3 : http://math.hws.edu/javanotes/c9/s3.html#recursion.3.3
.. |jn9.3.3| replace:: `9.3.3 : Postfix Expressions`
.. _jn9.4 : http://math.hws.edu/javanotes/c9/s4.html
.. |jn9.4| replace:: `9.4 : Binary Trees`
.. _jn9.4.1 : http://math.hws.edu/javanotes/c9/s4.html#recursion.4.1
.. |jn9.4.1| replace:: `9.4.1 : Tree Traversal`
.. _jn9.4.2 : http://math.hws.edu/javanotes/c9/s4.html#recursion.4.2
.. |jn9.4.2| replace:: `9.4.2 : Binary Sort Trees`
.. _jn9.4.3 : http://math.hws.edu/javanotes/c9/s4.html#recursion.4.3
.. |jn9.4.3| replace:: `9.4.3 : Expression Trees`
.. _jn9.5 : http://math.hws.edu/javanotes/c9/s5.html
.. |jn9.5| replace:: `9.5 : A Simple Recursive Descent Parser`
.. _jn9.5.1 : http://math.hws.edu/javanotes/c9/s5.html#recursion.5.1
.. |jn9.5.1| replace:: `9.5.1 : Backus-Naur Form`
.. _jn9.5.2 : http://math.hws.edu/javanotes/c9/s5.html#recursion.5.2
.. |jn9.5.2| replace:: `9.5.2 : Recursive Descent Parsing`
.. _jn9.5.3 : http://math.hws.edu/javanotes/c9/s5.html#recursion.5.3
.. |jn9.5.3| replace:: `9.5.3 : Building an Expression Tree`
.. _jn10 : http://math.hws.edu/javanotes/c10/index.html
.. |jn10| replace:: `10 : Generic Programming and Collection Classes`
.. _jn10.1 : http://math.hws.edu/javanotes/c10/s1.html
.. |jn10.1| replace:: `10.1 : Generic Programming`
.. _jn10.1.1 : http://math.hws.edu/javanotes/c10/s1.html#generics.1.1
.. |jn10.1.1| replace:: `10.1.1 : Generic Programming in Smalltalk`
.. _jn10.1.2 : http://math.hws.edu/javanotes/c10/s1.html#generics.1.2
.. |jn10.1.2| replace:: `10.1.2 : Generic Programming in C++`
.. _jn10.1.3 : http://math.hws.edu/javanotes/c10/s1.html#generics.1.3
.. |jn10.1.3| replace:: `10.1.3 : Generic Programming in Java`
.. _jn10.1.4 : http://math.hws.edu/javanotes/c10/s1.html#generics.1.4
.. |jn10.1.4| replace:: `10.1.4 : The Java Collection Framework`
.. _jn10.1.5 : http://math.hws.edu/javanotes/c10/s1.html#generics.1.5
.. |jn10.1.5| replace:: `10.1.5 : Iterators and for-each Loops`
.. _jn10.1.6 : http://math.hws.edu/javanotes/c10/s1.html#generics.1.6
.. |jn10.1.6| replace:: `10.1.6 : Equality and Comparison`
.. _jn10.1.7 : http://math.hws.edu/javanotes/c10/s1.html#generics.1.7
.. |jn10.1.7| replace:: `10.1.7 : Generics and Wrapper Classes`
.. _jn10.2 : http://math.hws.edu/javanotes/c10/s2.html
.. |jn10.2| replace:: `10.2 : Lists and Sets`
.. _jn10.2.1 : http://math.hws.edu/javanotes/c10/s2.html#generics.2.1
.. |jn10.2.1| replace:: `10.2.1 : ArrayList and LinkedList`
.. _jn10.2.2 : http://math.hws.edu/javanotes/c10/s2.html#generics.2.2
.. |jn10.2.2| replace:: `10.2.2 : Sorting`
.. _jn10.2.3 : http://math.hws.edu/javanotes/c10/s2.html#generics.2.3
.. |jn10.2.3| replace:: `10.2.3 : TreeSet and HashSet`
.. _jn10.2.4 : http://math.hws.edu/javanotes/c10/s2.html#generics.2.4
.. |jn10.2.4| replace:: `10.2.4 : EnumSet`
.. _jn10.3 : http://math.hws.edu/javanotes/c10/s3.html
.. |jn10.3| replace:: `10.3 : Maps`
.. _jn10.3.1 : http://math.hws.edu/javanotes/c10/s3.html#generics.3.1
.. |jn10.3.1| replace:: `10.3.1 : The Map Interface`
.. _jn10.3.2 : http://math.hws.edu/javanotes/c10/s3.html#generics.3.2
.. |jn10.3.2| replace:: `10.3.2 : Views, SubSets, and SubMaps`
.. _jn10.3.3 : http://math.hws.edu/javanotes/c10/s3.html#generics.3.3
.. |jn10.3.3| replace:: `10.3.3 : Hash Tables and Hash Codes`
.. _jn10.4 : http://math.hws.edu/javanotes/c10/s4.html
.. |jn10.4| replace:: `10.4 : Programming with the Java Collection Framework`
.. _jn10.4.1 : http://math.hws.edu/javanotes/c10/s4.html#generics.4.1
.. |jn10.4.1| replace:: `10.4.1 : Symbol Tables`
.. _jn10.4.2 : http://math.hws.edu/javanotes/c10/s4.html#generics.4.2
.. |jn10.4.2| replace:: `10.4.2 : Sets Inside a Map`
.. _jn10.4.3 : http://math.hws.edu/javanotes/c10/s4.html#generics.4.3
.. |jn10.4.3| replace:: `10.4.3 : Using a Comparator`
.. _jn10.4.4 : http://math.hws.edu/javanotes/c10/s4.html#generics.4.4
.. |jn10.4.4| replace:: `10.4.4 : Word Counting`
.. _jn10.5 : http://math.hws.edu/javanotes/c10/s5.html
.. |jn10.5| replace:: `10.5 : Writing Generic Classes and Methods`
.. _jn10.5.1 : http://math.hws.edu/javanotes/c10/s5.html#generics.5.1
.. |jn10.5.1| replace:: `10.5.1 : Simple Generic Classes`
.. _jn10.5.2 : http://math.hws.edu/javanotes/c10/s5.html#generics.5.2
.. |jn10.5.2| replace:: `10.5.2 : Simple Generic Methods`
.. _jn10.5.3 : http://math.hws.edu/javanotes/c10/s5.html#generics.5.3
.. |jn10.5.3| replace:: `10.5.3 : Type Wildcards`
.. _jn10.5.4 : http://math.hws.edu/javanotes/c10/s5.html#generics.5.4
.. |jn10.5.4| replace:: `10.5.4 : Bounded Types`
.. _jn11 : http://math.hws.edu/javanotes/c11/index.html
.. |jn11| replace:: `11 : Advanced Input/Output: Streams, Files, and Networking`
.. _jn11.1 : http://math.hws.edu/javanotes/c11/s1.html
.. |jn11.1| replace:: `11.1 : Streams, Readers, and Writers`
.. _jn11.1.1 : http://math.hws.edu/javanotes/c11/s1.html#IO.1.1
.. |jn11.1.1| replace:: `11.1.1 : Character and Byte Streams`
.. _jn11.1.2 : http://math.hws.edu/javanotes/c11/s1.html#IO.1.2
.. |jn11.1.2| replace:: `11.1.2 : PrintWriter`
.. _jn11.1.3 : http://math.hws.edu/javanotes/c11/s1.html#IO.1.3
.. |jn11.1.3| replace:: `11.1.3 : Data Streams`
.. _jn11.1.4 : http://math.hws.edu/javanotes/c11/s1.html#IO.1.4
.. |jn11.1.4| replace:: `11.1.4 : Reading Text`
.. _jn11.1.5 : http://math.hws.edu/javanotes/c11/s1.html#IO.1.5
.. |jn11.1.5| replace:: `11.1.5 : The Scanner Class`
.. _jn11.1.6 : http://math.hws.edu/javanotes/c11/s1.html#IO.1.6
.. |jn11.1.6| replace:: `11.1.6 : Serialized Object I/O`
.. _jn11.2 : http://math.hws.edu/javanotes/c11/s2.html
.. |jn11.2| replace:: `11.2 : Files`
.. _jn11.2.1 : http://math.hws.edu/javanotes/c11/s2.html#IO.2.1
.. |jn11.2.1| replace:: `11.2.1 : Reading and Writing Files`
.. _jn11.2.2 : http://math.hws.edu/javanotes/c11/s2.html#IO.2.2
.. |jn11.2.2| replace:: `11.2.2 : Files and Directories`
.. _jn11.2.3 : http://math.hws.edu/javanotes/c11/s2.html#IO.2.3
.. |jn11.2.3| replace:: `11.2.3 : File Dialog Boxes`
.. _jn11.3 : http://math.hws.edu/javanotes/c11/s3.html
.. |jn11.3| replace:: `11.3 : Programming With Files`
.. _jn11.3.1 : http://math.hws.edu/javanotes/c11/s3.html#IO.3.1
.. |jn11.3.1| replace:: `11.3.1 : Copying a File`
.. _jn11.3.2 : http://math.hws.edu/javanotes/c11/s3.html#IO.3.2
.. |jn11.3.2| replace:: `11.3.2 : Persistent Data`
.. _jn11.3.3 : http://math.hws.edu/javanotes/c11/s3.html#IO.3.3
.. |jn11.3.3| replace:: `11.3.3 : Files in GUI Programs`
.. _jn11.3.4 : http://math.hws.edu/javanotes/c11/s3.html#IO.3.4
.. |jn11.3.4| replace:: `11.3.4 : Storing Objects in Files`
.. _jn11.4 : http://math.hws.edu/javanotes/c11/s4.html
.. |jn11.4| replace:: `11.4 : Networking`
.. _jn11.4.1 : http://math.hws.edu/javanotes/c11/s4.html#IO.4.1
.. |jn11.4.1| replace:: `11.4.1 : URLs and URLConnections`
.. _jn11.4.2 : http://math.hws.edu/javanotes/c11/s4.html#IO.4.2
.. |jn11.4.2| replace:: `11.4.2 : TCP/IP and Client/Server`
.. _jn11.4.3 : http://math.hws.edu/javanotes/c11/s4.html#IO.4.3
.. |jn11.4.3| replace:: `11.4.3 : Sockets in Java`
.. _jn11.4.4 : http://math.hws.edu/javanotes/c11/s4.html#IO.4.4
.. |jn11.4.4| replace:: `11.4.4 : A Trivial Client/Server`
.. _jn11.4.5 : http://math.hws.edu/javanotes/c11/s4.html#IO.4.5
.. |jn11.4.5| replace:: `11.4.5 : A Simple Network Chat`
.. _jn11.5 : http://math.hws.edu/javanotes/c11/s5.html
.. |jn11.5| replace:: `11.5 : A Brief Introduction to XML`
.. _jn11.5.1 : http://math.hws.edu/javanotes/c11/s5.html#IO.5.1
.. |jn11.5.1| replace:: `11.5.1 : Basic XML Syntax`
.. _jn11.5.2 : http://math.hws.edu/javanotes/c11/s5.html#IO.5.2
.. |jn11.5.2| replace:: `11.5.2 : XMLEncoder and XMLDecoder`
.. _jn11.5.3 : http://math.hws.edu/javanotes/c11/s5.html#IO.5.3
.. |jn11.5.3| replace:: `11.5.3 : Working With the DOM`
.. chapter 12 not used
.. chapter 13 not used