Skip to content

Commit 4c8ea02

Browse files
bowbahdoemasiamj
andauthored
Methods + Classes (#23)
* Add start of if/else! ... Co-Authored-By: Mitch Masia <[email protected]> * loops * ... * Update SUMMARY.md * loop challenges * Update challenges.md * .. * Move iteration into loops * More arrays * Update access_individual_elements.md * ... * Close out arrays I sans challenges * Rename features.py to features.java to placate folks Update book.toml Update book.toml * Format * Fix typo * .. * ... * ... * ... * classes * ... * Update labeled_continue.md * Update book.toml * ... --------- Co-authored-by: Mitch Masia <[email protected]>
1 parent bd65036 commit 4c8ea02

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1428
-37
lines changed

book.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ level = 0 # the depth to start folding
1616

1717
[preprocessor.features]
1818
command = "python3 features.java"
19+
# Going to start writing the rest of the book
20+
# Assuming this is true
21+
toplevel_anonymous_class = true
1922
# Not ready
20-
toplevel_anonymous_class = false
21-
# Not ready
22-
simple_io = false
23+
simple_io = true
2324
# Turn on when Java 21 released
2425
java_21 = false

src/SUMMARY.md

+81-28
Original file line numberDiff line numberDiff line change
@@ -132,44 +132,97 @@
132132
- [Printing the Contents of an Array](./arrays/printing_the_contents_of_an_array.md)
133133
- [Empty Array](./arrays/empty_array.md)
134134
- [Difference between Initializer and Literal](./arrays/difference_between_initializer_and_literal.md)
135-
- [Challenges](./arrays/challenges)
135+
- [Challenges](./arrays/challenges.md)
136136

137137
# Control Flow II
138138

139-
<!--
140-
- [For](./for.md)
141-
- [Comparison to while]()
142-
- [i](./for/i.md)
143-
- [Relation to Arrays]()
144-
- [var]()
145-
- [final]()
146-
- [For Each]()
139+
- [Loops II](./loops_ii.md)
140+
- [For](./loops_ii/for.md)
141+
- [For Syntax](./loops_ii/for_syntax.md)
142+
- [Counting Up and Down](./loops_ii/for_counting_up_and_down.md)
143+
- [Iterate over a String](./loops_ii/iterate_over_a_string.md)
144+
- [Iterate over an Array](./loops_ii/iterate_over_an_array.md)
145+
- [Comparison to while](./loops_ii/comparison_to_while.md)
146+
- [i](./loops_ii/i.md)
147+
- [Break](./loops_ii/break.md)
148+
- [Continue](./loops_ii/continue.md)
149+
- [Delayed Assignment](./loops_ii/delayed_assignment.md)
150+
- [Inferred Types](./loops_ii/inferred_types.md)
151+
- [Empty Initializers](./loops_ii/empty_initializers.md)
152+
- [Empty Expressions](./loops_ii/empty_expressions.md)
153+
- [Empty Statements](./loops_ii/empty_statements.md)
154+
- [Final Variables](./loops_ii/final_variables.md)
155+
- [Labeled Break](./loops_ii/labeled_break.md)
156+
- [Labeled Continue](./loops_ii/labeled_continue.md)
157+
- [Drawing Right Triangles](./loops_ii/drawing_right_triangles.md)
158+
- [Drawing Isosceles Triangles](./loops_ii/drawing_isosceles_triangles.md)
159+
- [Challenges](./loops_ii/challenges.md)
160+
161+
# Code Structure
162+
163+
- [Methods](./methods.md)
164+
- [Declaration](./methods/declaration.md)
165+
- [Invocation](./methods/invocation.md)
166+
- [Scope](./methods/scope.md)
167+
- [Return](./methods/return.md)
168+
- [Unreachable Statements](./methods/unreachable_statements.md)
169+
- [main](./methods/main.md)
170+
- [Arguments](./arguments.md)
171+
- [Declaration](./arguments/declaration.md)
172+
- [Return Values](./return_values.md)
173+
- [void](./return_values/void.md)
174+
- [Conversion](./return_values/conversion.md)
175+
- [Pure Functions](./return_values/pure_functions.md)
176+
- [Classes](./classes.md)
177+
- [Class Declaration](./classes/class_declaration.md)
178+
- [Naming Classes](./classes/naming_classes.md)
179+
- [Field Declaration](./classes/field_declaration.md)
180+
- [Naming Fields](./classes/naming_fields.md)
181+
- [new](./classes/new.md)
182+
- [Zero Values](./classes/zero_values.md)
183+
- [Aliasing](./classes/aliasing.md)
184+
- [null](./classes/null.md)
185+
186+
- [Constructors](./constructors.md)
187+
- [this](./constructors/this.md)
188+
- [The Default Constructor](./constructors/the_default_constructor.md)
189+
- [Final Fields](./constructors/final_fields.md)
190+
- [Multiple Constructors](./constructors/multiple_constructors.md)
147191

148-
- [Iteration]()
149-
- [Iterate over an array]()
192+
- [Instance Methods](./instance_methods.md)
193+
- [Declaration](./instance_methods/declaration.md)
194+
- [Invocation](./instance_methods/invocation.md)
195+
- [this](./instance_methods/this.md)
196+
- [Aliasing](./instance_methods/aliasing.md)
197+
- [Derived Values](./instance_methods/derived_values.md)
198+
199+
# Data Types III
150200

151201
- [null](./null.md)
152-
- [Reference Types]()
153-
- [Primitive Types]()
154-
- [Populate array]()
202+
- [Checking for null](./null/checking_for_null.md)
203+
- [Field Access](./null/field_access.md)
204+
- [Instance Methods](./null/instance_methods.md)
155205

156-
-->
206+
- [Arrays II]()
207+
- [Default Values]()
208+
- [Populate Array]()
209+
- [Boxed Primitives]()
210+
- [Boolean]()
211+
- [Character]()
212+
- [Integer]()
213+
- [Double]()
214+
215+
- [Example: "Growable" Array]()
216+
217+
# Code Structure II
218+
- [Documentation]()
219+
- [Documentation Comments]()
220+
- [Testing]()
157221

158222
# User Defined Types
159223

160-
- [Classes](./classes.md)
161-
- [Primitive Classes](./classes/primitive_classes.md)
162-
- [Reference Classes](./classes/reference_classes.md)
163-
- [null](./classes/null.md)
164-
- [Class Declaration](./classes/class_declaration.md)
165-
- [Naming](./classes/naming.md)
166-
- [Fields](./fields.md)
167-
- [Default Values](./fields/default_values.md)
168-
- [Methods](./methods.md)
169-
- [Arguments](./methods/arguments.md)
170-
- [Return Values](./methods/return_values.md)
171-
- [void](./methods/void.md)
172-
- [Constructors](./constructors.md)
224+
- [Primitive Classes](./classes/primitive_classes.md)
225+
- [Reference Classes](./classes/reference_classes.md)
173226

174227
<!--
175228
Arrays

src/arguments.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Arguments
2+
3+
If methods always had to do the same thing each time they were run, they wouldn't be that useful.
4+
5+
The way to customize what happens when a method is called is to have them take "arguments."
6+
Arguments let the caller of the method change what happens when a method runs.
7+
As part of a method declaration, you can include a comma separated list of "arguments"
8+
to that method. These arguments let the caller of the method change what happens when a method runs.
9+
10+
```java
11+
void sayHello(String name) {
12+
System.out.println("Hello " + name + "!");
13+
}
14+
15+
void main() {
16+
// Hello Joshua!
17+
sayHello("Joshua");
18+
// Hello Claire!
19+
sayHello("Claire");
20+
}
21+
```

src/arguments/declaration.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Declaration
2+
3+
To declare a method take an argument, instead of putting `()` after the method name
4+
you need to put a comma separated list of argument declarations.
5+
6+
Each argument declaration looks the same as a variable declaration and has both a type and a name.
7+
8+
```java
9+
// This declares a single argument named "food" that
10+
// has a type of "String".
11+
void eat(String food) {
12+
System.out.println("I ate " + food);
13+
}

src/arrays/challenges.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Challenges

src/classes.md

+43
Original file line numberDiff line numberDiff line change
@@ -1 +1,44 @@
11
# Classes
2+
3+
Methods can only have one return value. This means that if you wanted to make a method
4+
that returned two values, such as the location of buried treasure, you would have trouble.
5+
6+
```java
7+
// Can only declare one "thing" that will be returned
8+
double getTreasureLocation() {
9+
// Can't return two values.
10+
return 43.8803, 103.4538
11+
}
12+
```
13+
14+
This is the first[^many] use of classes. You can declare your own class which can hold multiple
15+
values and use that to smuggle them across a method return.
16+
17+
```java
18+
class Location {
19+
double latitude;
20+
double longitude;
21+
}
22+
23+
Location getTreasureLocation() {
24+
Location treasure = new Location();
25+
treasure.latitude = 43.8803;
26+
treasure.longitude = 103.4538;
27+
return treasure;
28+
}
29+
30+
void main() {
31+
Location treasure = getTreasureLocation();
32+
33+
System.out.println(
34+
"The treasure is at " +
35+
treasure.latitude +
36+
"N, " +
37+
treasure.longitude +
38+
"W."
39+
);
40+
}
41+
```
42+
43+
44+
[^many]: of many

src/classes/aliasing.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Aliasing

src/classes/declaration.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Declaration
2+
3+
To declare a class, you write the word `class` followed by a name for the class.
4+
5+
You shoul
6+

src/classes/field_declaration.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Field Declaration

src/classes/naming_classes.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Naming Classes

src/classes/naming_fields.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Naming Fields
2+
3+
Fields are generally named `camelCase`, the same as local variables.[^break]
4+
5+
```java
6+
class Example {
7+
int x;
8+
String name;
9+
int[] timesOfRacers;
10+
String[] namesOfClowns;
11+
}
12+
```
13+
14+
[^break]: If you break a social rule, something Bad happens.

src/classes/new.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# new

src/classes/zero_values.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Zero Values

src/constructors/final_fields.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Final Fields
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Multiple Constructors
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# The Default Constructor

src/constructors/this.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# this

src/drawing_shapes/right_triangles.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Right Triangles

src/instance

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# this

src/instance_methods.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Instance Methods

src/instance_methods/aliasing.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Aliasing

src/instance_methods/declaration.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Declaration
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Derived Values

src/instance_methods/invocation.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Invocation

src/instance_methods/this.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# this

src/integers/division.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ So `5 / 2` does not result in `2.5`, but instead just `2`.
1919
// 5 / 2 is not 2.5, but instead 2.
2020
int x = 5 / 2;
2121
// 13 / 3 is not 4.3333, but instead 4.
22-
int y = 13 / 2;
22+
int y = 13 / 3;
2323

2424
System.out.println(x);
2525
System.out.println(y);

src/loops/do_while.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Do
22

3-
One variation on a while loop is a "do-while loop."
3+
4+
One variation on a `while` loop is a "do-while loop."
5+
46

57
```java
68
int x = 0;

src/loops_ii.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Loops II
2+
3+
`while` loops are enough to make any looping logic that you might want, but
4+
they aren't the only kind of loops you will see.
5+
6+
There are tasks which would require a `while` loop, but are common enough that there are other kinds
7+
of loops that are shortcuts to writing them.
8+
9+

src/loops_ii/break.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Break
2+
3+
`break` works the same with `for` loops as it does with `while` loops.
4+
Any time you hit a line with `break` you will immediately exit the loop.
5+
6+
```java
7+
for (int i = 0; i < 1000; i++) {
8+
if (i == 5) {
9+
break;
10+
}
11+
System.out.println(i);
12+
}
13+
System.out.println("Over");
14+
15+
// 0
16+
// 1
17+
// 2
18+
// 3
19+
// 4
20+
// Over
21+
```

0 commit comments

Comments
 (0)