Skip to content

Commit 18d4e89

Browse files
committed
Add examples in "Lists" and other rewrites/fixes
1 parent 95b626e commit 18d4e89

8 files changed

+75
-21
lines changed

Examples/CreatingGenerics/Disposable.kt

+8-8
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@ interface Disposable {
1010

1111
class Compost(override val name: String) :
1212
Disposable {
13-
override fun action() = "Add to composter"
14-
}
13+
override fun action() = "Add to composter"
14+
}
1515

1616
interface Transport : Disposable
1717

1818
class Donation(override val name: String) :
1919
Transport {
20-
override fun action() = "Call for pickup"
21-
}
20+
override fun action() = "Call for pickup"
21+
}
2222

2323
class Recyclable(override val name: String) :
2424
Transport {
25-
override fun action() = "Put in bin"
26-
}
25+
override fun action() = "Put in bin"
26+
}
2727

2828
class Landfill(override val name: String) :
2929
Transport {
30-
override fun action() = "Put in dumpster"
31-
}
30+
override fun action() = "Put in dumpster"
31+
}
3232

3333
val items = listOf(
3434
Compost("Orange Peel"),
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Lists/ApparentlyMutableList.kt
2+
// (c)2021 Mindview LLC. See Copyright.txt for permissions.
3+
import atomictest.eq
4+
5+
fun main() {
6+
var list = listOf('X') // Immutable
7+
list += 'Y' // Appears to be mutable
8+
list eq "[X, Y]"
9+
}

Examples/Lists/MultipleListRefs.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ fun main() {
66
val first = mutableListOf(1)
77
val second: List<Int> = first
88
second eq listOf(1)
9-
10-
first += 2
9+
first.add(2)
1110
// second sees the change:
1211
second eq listOf(1, 2)
1312
}

Examples/Lists/MutListIsList.kt

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
package lists
44
import atomictest.eq
55

6-
fun getList(): List<Int> {
7-
return mutableListOf(1, 2, 3)
8-
}
6+
fun makeList(): List<Int> =
7+
mutableListOf(1, 2, 3)
98

109
fun main() {
11-
// getList() produces a read-only List:
12-
val list = getList()
13-
// list += 3 // Error
10+
// makeList() produces a read-only List:
11+
val list = makeList()
12+
// list.add(3) // Unresolved reference: add
1413
list eq listOf(1, 2, 3)
1514
}

Examples/Lists/PlusAssignPuzzle.kt

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Lists/PlusAssignPuzzle.kt
2+
// (c)2021 Mindview LLC. See Copyright.txt for permissions.
3+
import atomictest.eq
4+
5+
fun main() {
6+
// Mutable List assigned to a 'val'/'var':
7+
val list1 = mutableListOf('A') // or 'var'
8+
list1 += 'A' // Is the same as:
9+
list1.plusAssign('A') // [1]
10+
11+
// Immutable List assigned to a 'val':
12+
val list2 = listOf('B')
13+
// list2 += 'B' // Is the same as:
14+
// list2 = list2 + 'B' // [2]
15+
16+
// Immutable List assigned to a 'var':
17+
var list3 = listOf('C')
18+
list3 += 'C' // Is the same as:
19+
val newList = list3 + 'C' // [3]
20+
list3 = newList // [4]
21+
22+
list1 eq "[A, A, A]"
23+
list2 eq "[B]"
24+
list3 eq "[C, C, C]"
25+
}

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ on the Mac, "Extract Here" on Linux, or "Extract all ..." on Windows.
385385
# Appendix B: Command-Line Hello World
386386

387387
This appendix explains how to compile and run the program shown in the "Hello
388-
World" atom in the book, using the latest version (1.4 or higher) of the
388+
World" atom in the book, using the latest version (1.5 or higher) of the
389389
[Kotlin command-line compiler](http://kotlinlang.org/docs/tutorials/command-line.html).
390390

391391
Open up a console window in the `HelloWorld` directory, where you'll see
@@ -455,15 +455,15 @@ kotlin bar.FooKt
455455

456456
The Kotlin interpreter is also called the REPL (for *Read-Evaluate-Print-
457457
Loop*). To use this you must first install the
458-
latest version (1.4 or higher) of the [Kotlin command-line
458+
latest version (1.5 or higher) of the [Kotlin command-line
459459
compiler](http://kotlinlang.org/docs/tutorials/command-line.html).
460460

461461
> NOTE: You do not need to install command-line Kotlin for the operations
462462
> described previously in this README.
463463
464464
## Install Kotlin
465465

466-
In this book, we use Kotlin version 1.4, the latest available at the time. The
466+
In this book, we use Kotlin version 1.5, the latest available at the time. The
467467
detailed installation instructions for the command-line compiler are available
468468
at [The Kotlin Site](https://kotlinlang.org/docs/tutorials/command-line.html).
469469

@@ -482,13 +482,13 @@ To start the REPL, type `kotlinc` by itself on the command line. You should see
482482
something like the following:
483483

484484
```
485-
Welcome to Kotlin version 1.4 (JRE 1.8.0_144-b01)
485+
Welcome to Kotlin version 1.5 (JRE 1.8.0_144-b01)
486486
Type :help for help, :quit for quit
487487
>>>
488488
```
489489

490490
The exact version numbers will vary depending on the versions of Kotlin
491-
and Java you've installed, but make sure that you're running Kotlin 1.4
491+
and Java you've installed, but make sure that you're running Kotlin 1.5
492492
or greater.
493493

494494
The REPL gives you immediate interactive feedback, which is helpful for

Tests/TestExamples.java

+10
Original file line numberDiff line numberDiff line change
@@ -1822,6 +1822,11 @@ public void testPropertyOptions() {
18221822
testExample("Examples/LazyInitialization/PropertyOptions.kt", lazyinitialization.PropertyOptionsKt::main);
18231823
}
18241824

1825+
@Test
1826+
public void testApparentlyMutableList() {
1827+
testExample("Examples/Lists/ApparentlyMutableList.kt", ApparentlyMutableListKt::main);
1828+
}
1829+
18251830
@Test
18261831
public void testLists() {
18271832
testExample("Examples/Lists/Lists.kt", ListsKt::main);
@@ -1862,6 +1867,11 @@ public void testParameterizedTypes() {
18621867
testExample("Examples/Lists/ParameterizedTypes.kt", ParameterizedTypesKt::main);
18631868
}
18641869

1870+
@Test
1871+
public void testPlusAssignPuzzle() {
1872+
testExample("Examples/Lists/PlusAssignPuzzle.kt", PlusAssignPuzzleKt::main);
1873+
}
1874+
18651875
@Test
18661876
public void testTask127() {
18671877
testExample("Examples/Lists/Task1.kt", listsExercise1.Task1Kt::main);

gradle/tasks.gradle

+12
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ task AnyInstead(type: JavaExec) {
8585
main = 'introgenerics.AnyInsteadKt'
8686
}
8787

88+
task ApparentlyMutableList(type: JavaExec) {
89+
classpath kotlinClassPath
90+
main = 'ApparentlyMutableListKt'
91+
}
92+
8893
task Arg(type: JavaExec) {
8994
classpath kotlinClassPath
9095
main = 'ArgKt'
@@ -2125,6 +2130,11 @@ task PlayingCards(type: JavaExec) {
21252130
main = 'manipulatinglists.PlayingCardsKt'
21262131
}
21272132

2133+
task PlusAssignPuzzle(type: JavaExec) {
2134+
classpath kotlinClassPath
2135+
main = 'PlusAssignPuzzleKt'
2136+
}
2137+
21282138
task Postconditions(type: JavaExec) {
21292139
classpath kotlinClassPath
21302140
main = 'checkinstructions.PostconditionsKt'
@@ -3058,6 +3068,7 @@ task run (dependsOn: [
30583068
'Any',
30593069
'AnyFromListOfStar',
30603070
'AnyInstead',
3071+
'ApparentlyMutableList',
30613072
'Arg',
30623073
'ArgumentOrder',
30633074
'ArithmeticOperators',
@@ -3466,6 +3477,7 @@ task run (dependsOn: [
34663477
'PlatformTypes',
34673478
'PlayerInterface',
34683479
'PlayingCards',
3480+
'PlusAssignPuzzle',
34693481
'Postconditions',
34703482
'PostfixVsPrefix',
34713483
'Predicates',

0 commit comments

Comments
 (0)