Skip to content

Commit fdef434

Browse files
committed
more art
1 parent 63eae18 commit fdef434

File tree

26 files changed

+34
-0
lines changed

26 files changed

+34
-0
lines changed

src/array_list.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# ArrayList
22

3+
4+
<img src="/array_list/header.png" height="200px"/>
5+
36
Java comes with a generic growable array. It is called
47
an `ArrayList`.
58

src/array_list/header.png

36.9 KB
Loading

src/collections.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Collections
22

3+
4+
<img src="/collections/header.png" height="200px"/>
5+
36
Arrays, `ArrayList`, and `HashMap` are all "collections"
47
of objects. Importantly, they also aren't the only possible
58
kinds of collections.

src/collections/header.png

30.8 KB
Loading

src/encapsulation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Encapsulation
22

3+
<img src="/encapsulation/header.png" height="200px"/>
4+
35
One way of combatting the effects of Hyrum's Law
46
is encapsulation.
57

src/encapsulation/header.png

53.5 KB
Loading

src/files.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Files
22

3+
<img src="/files/header.png" height="200px"/>
4+
35
Files are how you store information
46
on a[^normal] computer so that it can still be there when your program
57
is done running.

src/files/header.png

30.3 KB
Loading

src/generics.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Generics
22

3+
<img src="/generics/header.png" height="200px"/>
4+
35
Certain types of classes, like growable arrays, are simply holders of data.
46

57
That is, almost none of how they work has to change to

src/generics/header.png

31.9 KB
Loading

0 commit comments

Comments
 (0)