You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: thinkjava.tex
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
\newcommand{\thetitle}{Think Java}
7
7
\newcommand{\thesubtitle}{How to Think Like a Computer Scientist}
8
8
\newcommand{\theauthors}{Allen B. Downey and Chris Mayfield}
9
-
\newcommand{\theversion}{6.1.4}
9
+
\newcommand{\theversion}{6.1.5}
10
10
11
11
%%%% Both LATEX and PLASTEX
12
12
@@ -383,7 +383,7 @@ \section*{Contributors over the years}
383
383
We are especially grateful to our technical reviewers: Blythe Samuels, David Wisneski, and Stephen Rose.
384
384
They found errors, made many great suggestions, and helped make the book much better.
385
385
386
-
Additional contributors who found one or more typos: Stijn Debrouwere, Guy Driesen, Andai Velican, Chris Kuszmaul, Daniel Kurikesu, Josh Donath, Rens Findhammer, Elisa Abedrapo, Yousef BaAfif, Bruce Hill, Matt Underwood, Isaac Sultan, Dan Rice, Robert Beard, Daniel Pierce, Michael Giftthaler, Min Zeng, and Markus Geuss.
386
+
Additional contributors who found one or more typos: Stijn Debrouwere, Guy Driesen, Andai Velican, Chris Kuszmaul, Daniel Kurikesu, Josh Donath, Rens Findhammer, Elisa Abedrapo, Yousef BaAfif, Bruce Hill, Matt Underwood, Isaac Sultan, Dan Rice, Robert Beard, Daniel Pierce, Michael Giftthaler, Chris Fox, Min Zeng, and Markus Geuss.
387
387
388
388
If you have additional comments or ideas about the text, please send them to: \href{mailto:feedback@greenteapress.com}{\tt feedback@greenteapress.com}.
389
389
@@ -6878,8 +6878,8 @@ \section{Characters}
6878
6878
Java uses {\bf Unicode} to represent characters, so strings can store text in other alphabets like Cyrillic and Greek, and non-alphabetic languages like Chinese.
6879
6879
You can read more about it at \url{http://unicode.org/}.
6880
6880
6881
-
In Unicode, each character is represented by a ``code unit'', which you can think of as an integer.
6882
-
The code units for uppercase Greek letters run from 913 to 937, so we can display the Greek alphabet like this:
6881
+
In Unicode, each character is represented by a ``code point'', which you can think of as an integer.
6882
+
The code points for uppercase Greek letters run from 913 to 937, so we can display the Greek alphabet like this:
6883
6883
6884
6884
\begin{code}
6885
6885
System.out.print("Greek alphabet: ");
@@ -8601,7 +8601,7 @@ \section{Getters and setters}
8601
8601
return this.minute;
8602
8602
}
8603
8603
8604
-
public int getSecond() {
8604
+
public double getSecond() {
8605
8605
return this.second;
8606
8606
}
8607
8607
\end{code}
@@ -8625,7 +8625,7 @@ \section{Getters and setters}
0 commit comments