handouts/pep-ho.tex
author Christian Urban <urbanc@in.tum.de>
Sun, 11 Aug 2019 21:01:49 +0100
changeset 274 b5faae05fc43
parent 273 9cf4d3c3abd1
child 275 d2e28432378f
permissions -rw-r--r--
test
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
     1
% !TEX program = xelatex
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
\documentclass{article}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
\usepackage{../style}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
\usepackage{../langs}
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
     5
\usepackage{tikz}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
     6
\usepackage{pgf}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
\usepackage{marvosym}
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
     8
\usepackage{boxedminipage}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
    10
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
%cheat sheet
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    12
%http://worldline.github.io/scala-cheatsheet/
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
    14
% case class, apply, unapply
170
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    15
% see https://medium.com/@thejasbabu/scala-pattern-matching-9c9e73ba9a8a
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    16
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    17
% the art of programming
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    18
% https://www.youtube.com/watch?v=QdVFvsCWXrA
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    19
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    20
% functional programming in Scala
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    21
%https://www.amazon.com/gp/product/1449311032/ref=as_li_ss_tl?ie=UTF8&tag=aleottshompag-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=1449311032
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    22
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
    23
% functional programming in C
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    24
%https://www.amazon.com/gp/product/0201419505/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=0201419505&linkCode=as2&tag=aleottshompag-20
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    25
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    26
%speeding through haskell
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    27
%https://openlibra.com/en/book/download/speeding-through-haskell
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    28
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    29
% fp books --- ocaml
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    30
% http://courses.cms.caltech.edu/cs134/cs134b/book.pdf
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    31
% http://alexott.net/en/fp/books/
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    32
257
71e534e28430 updated
Christian Urban <urbanc@in.tum.de>
parents: 198
diff changeset
    33
%John Hughes’ simple words:
71e534e28430 updated
Christian Urban <urbanc@in.tum.de>
parents: 198
diff changeset
    34
%A combinator is a function which builds program fragments
71e534e28430 updated
Christian Urban <urbanc@in.tum.de>
parents: 198
diff changeset
    35
%from program fragments.
71e534e28430 updated
Christian Urban <urbanc@in.tum.de>
parents: 198
diff changeset
    36
71e534e28430 updated
Christian Urban <urbanc@in.tum.de>
parents: 198
diff changeset
    37
264
25f3fbc43251 updated
Christian Urban <urbanc@in.tum.de>
parents: 257
diff changeset
    38
%explain graph coloring program (examples from)
25f3fbc43251 updated
Christian Urban <urbanc@in.tum.de>
parents: 257
diff changeset
    39
%https://www.metalevel.at/prolog/optimization
25f3fbc43251 updated
Christian Urban <urbanc@in.tum.de>
parents: 257
diff changeset
    40
25f3fbc43251 updated
Christian Urban <urbanc@in.tum.de>
parents: 257
diff changeset
    41
% nice example for map and reduce using Harry potter characters
25f3fbc43251 updated
Christian Urban <urbanc@in.tum.de>
parents: 257
diff changeset
    42
% https://www.matthewgerstman.com/map-filter-reduce/
25f3fbc43251 updated
Christian Urban <urbanc@in.tum.de>
parents: 257
diff changeset
    43
25f3fbc43251 updated
Christian Urban <urbanc@in.tum.de>
parents: 257
diff changeset
    44
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    45
\begin{document}
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
    46
\fnote{\copyright{} Christian Urban, King's College London, 2017, 2018, 2019}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    47
125
b91ad3761732 updated
Christian Urban <urbanc@in.tum.de>
parents: 124
diff changeset
    48
\section*{A Crash-Course in Scala}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    49
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
    50
\mbox{}\hfill\textit{``Scala --- \underline{S}lowly \underline{c}ompiled 
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
    51
\underline{a}cademic \underline{la}nguage''}\smallskip\\
192
cd2a9c969ef2 updated
Christian Urban <urbanc@in.tum.de>
parents: 188
diff changeset
    52
\mbox{}\hfill\textit{ --- a joke(?) found on Twitter}\bigskip
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    53
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    54
\subsection*{Introduction}
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    55
178
55367d499635 updated
Christian Urban <urbanc@in.tum.de>
parents: 170
diff changeset
    56
\noindent
170
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    57
Scala is a programming language that combines functional and
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    58
object-oriented programming-styles. It has received quite a bit of
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
    59
attention in the last five or so years. One reason for this attention is
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
    60
that, like the Java programming language, Scala compiles to the Java
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
    61
Virtual Machine (JVM) and therefore Scala programs can run under MacOSX,
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    62
Linux and Windows. Because of this it has also access to
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
    63
the myriads of Java libraries. Unlike Java, however, Scala often allows
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
    64
programmers to write very concise and elegant code.  Some therefore say
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
    65
``Scala is the better Java''.\footnote{from
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
    66
\url{https://www.slideshare.net/maximnovak/joy-of-scala}} 
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
    67
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    68
A number of companies---the Guardian, Twitter, Coursera, FourSquare,
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    69
Netflix, LinkedIn, ITV to name a few---either use Scala exclusively in
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
    70
production code, or at least to some substantial degree. Scala seems
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
    71
also useful in job-interviews (especially in data science) according to
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
    72
this anecdotal report
170
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    73
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
    74
\begin{quote}
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
    75
\url{http://techcrunch.com/2016/06/14/scala-is-the-new-golden-child}
170
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    76
\end{quote}
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    77
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    78
\noindent
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    79
The official Scala compiler can be downloaded from
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    80
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    81
\begin{quote}
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    82
\url{http://www.scala-lang.org}\medskip
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    83
\end{quote}
170
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    84
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
    85
\noindent
265
2692329287bb updated
Christian Urban <urbanc@in.tum.de>
parents: 264
diff changeset
    86
If you are interested, there are also experimental backends of Scala
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    87
for producing code under Android (\url{http://scala-android.org}); for
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    88
generating JavaScript code (\url{https://www.scala-js.org}); and there
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    89
is work under way to have a native Scala compiler generating X86-code
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    90
(\url{http://www.scala-native.org}). Though be warned these backends
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    91
are still rather beta or even alpha.
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    92
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    93
\subsection*{VS Code and Scala}
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    94
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
    95
I found a convenient IDE for writing Scala programs is Microsoft's
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
    96
\textit{Visual Studio Code} (VS Code) which runs under MacOSX, Linux and
269
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
    97
obviously Windows.\footnote{\ldots{}unlike \emph{Microsoft Visual Studio}---note
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    98
the minuscule difference in the name---which is a heavy-duty,
269
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
    99
Windows-only IDE\ldots{}jeez, with all their money could they not have come
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   100
up with a completely different name for a complete different project?
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   101
For the pedantic, Microsoft Visual Studio is an IDE, whereas Visual
269
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   102
Studio Code is considered to be a \emph{source code editor}. Anybody knows what the
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   103
difference is?} It can be downloaded for free from
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   104
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   105
\begin{quote}
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   106
\url{https://code.visualstudio.com}
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   107
\end{quote}
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   108
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   109
\noindent
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   110
and should already come pre-installed in the Department (together with
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   111
the Scala compiler). Being a project that just started in 2015, VS Code is
189
5777744fe354 updated
Christian Urban <urbanc@in.tum.de>
parents: 188
diff changeset
   112
relatively new and thus far from perfect. However it includes a
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   113
\textit{Marketplace} from which a multitude of extensions can be
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   114
downloaded that make editing and running Scala code a little easier (see
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   115
Figure~\ref{vscode} for my setup).
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   116
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   117
\begin{figure}[t]
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   118
\begin{boxedminipage}{\textwidth}  
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   119
\begin{center}  
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   120
\includegraphics[scale=0.15]{../pics/vscode.png}\\[-10mm]\mbox{}
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   121
\end{center}
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   122
\caption{My installation of VS Code includes the following
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   123
  packages from Marketplace: \textbf{Scala Syntax (official)} 0.3.4,
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   124
  \textbf{Code Runner} 0.9.12, \textbf{Code Spell Checker} 1.7.17,
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   125
  \textbf{Rewrap} 1.9.1 and \textbf{Subtle Match
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   126
  Brackets} 3.0.0. I have also bound the keys \keys{Ctrl} \keys{Ret} to the
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   127
  action ``Run-Selected-Text-In-Active-Terminal'' in order to quickly
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   128
  evaluate small code snippets in the Scala REPL. I use the internal
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   129
  terminal to run Scala.\label{vscode}}
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   130
\end{boxedminipage}
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   131
\end{figure}  
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   132
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   133
What I like most about VS Code is that it provides easy access to the
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   134
Scala REPL. But if you prefer another editor for coding, it is also
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   135
painless to work with Scala completely on the command line (as you might
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   136
have done with \texttt{g++} in the earlier part of PEP). For the
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   137
lazybones among us, there are even online editors and environments for
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   138
developing and running Scala programs: \textit{ScalaFiddle}
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   139
and \textit{Scastie} are two of them. They require zero setup 
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   140
(assuming you have a browser handy). You can access them at 
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   141
 
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   142
\begin{quote}
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   143
  \url{https://scalafiddle.io}\\
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   144
  \url{https://scastie.scala-lang.org}\medskip
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   145
\end{quote}
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   146
  
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   147
\noindent
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   148
But you should be careful if you use them for your coursework: they
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   149
are meant to play around, not really for serious work. 
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   150
269
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   151
As one might expect, Scala can be used with the heavy-duty IDEs Eclipse and IntelliJ.
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   152
A ready-made Scala bundle for Eclipse is available from
170
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
   153
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
   154
\begin{quote}
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
   155
\url{http://scala-ide.org/download/sdk.html}
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
   156
\end{quote}
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
   157
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
   158
\noindent
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   159
Also IntelliJ includes plugins for Scala. \underline{\textbf{BUT}}, 
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   160
I do \textbf{not} recommend the usage of either Eclipse or IntelliJ for PEP: these IDEs
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   161
seem to make your life harder, rather than easier, for the small
269
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   162
programs that we will write in this module. They are really meant to be used
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   163
when you have a million-lines codebase than with our small
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   164
``toy-programs''\ldots{}for example why on earth am I required to create a
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   165
completely new project with several subdirectories when I just want to
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   166
try out 20-lines of Scala code? Your mileage may vary though.~\texttt{;o)}
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   167
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   168
\subsection*{Why Functional Programming?}
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   169
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   170
Before we go on, let me explain a bit more why we want to inflict upon
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   171
you another programming language. You hopefully have mastered Java and
269
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   172
C++\ldots{}the world should be your oyster, no? Well, this is not as
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   173
simple as one might wish. We do require Scala in PEP, but actually we
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   174
do not religiously care whether you learn Scala---after all it is just
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   175
a programming language (albeit a nifty one IMHO). What we do care
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   176
about is that you learn about \textit{functional programming}. Scala
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   177
is just the vehicle for that. Still, you need to learn Scala well
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   178
enough to get good marks in PEP, but functional programming could
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   179
equally be taught with Haskell, F\#, SML, Ocaml, Kotlin, Clojure,
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   180
Scheme, Elm and many other functional programming languages.
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   181
%Your
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   182
%friendly lecturer just happens to like Scala
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   183
%and the Department agreed that it is a good idea to inflict Scala upon
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   184
%you.
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   185
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   186
Very likely writing programs in a functional programming language is
183
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   187
quite different from what you are  used to in your study so far. It
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   188
might even be totally alien to you. The reason is that functional
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   189
programming seems to go against the core principles of
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   190
\textit{imperative programming} (which is what you do in Java and C/C++
183
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   191
for example). The main idea of imperative programming  is that you have
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   192
some form of \emph{state} in your program and you continuously change this
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   193
state by issuing some commands---for example for updating a field in an
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   194
array or for adding one to a variable and so on. The classic
269
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   195
example for this style of programming is \texttt{for}-loops in C/C++. Consider
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   196
the snippet:
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   197
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   198
\begin{lstlisting}[language=C,numbers=none]
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   199
for (int i = 10; i < 20; i++) { 
269
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   200
      //...do something with i...
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   201
}
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   202
\end{lstlisting}
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   203
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   204
\noindent Here the integer variable \texttt{i} embodies the state, which
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   205
is first set to \texttt{10} and then increased by one in each
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   206
loop-iteration until it reaches \texttt{20} at which point the loop
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   207
exits. When this code is compiled and actually runs, there will be some
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   208
dedicated space reserved for \texttt{i} in memory. This space of
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   209
typically 32 bits contains \texttt{i}'s current value\ldots\texttt{10}
269
3ef2542207c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 265
diff changeset
   210
at the beginning, and then the content will be overwritten with 
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   211
new content in every iteration. The main point here is that this kind of
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   212
updating, or manipulating, memory is 25.806\ldots or \textbf{THE ROOT OF
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   213
ALL EVIL}!!
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   214
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   215
\begin{center}
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   216
\includegraphics[scale=0.25]{../pics/root-of-all-evil.png}
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   217
\end{center}  
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   218
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   219
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   220
\noindent
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   221
\ldots{}Well, it is perfectly benign if you have a sequential program
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   222
that gets run instruction by instruction...nicely one after another.
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   223
This kind of running code uses a single core of your CPU and goes as
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   224
fast as your CPU frequency, also called clock-speed, allows. The problem
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   225
is that this clock-speed has not much increased over the past decade and
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   226
no dramatic increases are predicted for any time soon. So you are a bit
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   227
stuck, unlike previous generations of developers who could rely upon the
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   228
fact that every 2 years or so their code would run twice as fast (in
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   229
ideal circumstances) because the clock-speed of their CPUs got twice as
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   230
fast. This unfortunately does not happen any more nowadays. To get you
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   231
out of this dreadful situation, CPU producers pile more and more
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   232
cores into CPUs in order to make them more powerful and potentially make
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   233
software faster. The task for you as developer is to take somehow
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   234
advantage of these cores by running as much of your code as possible in
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   235
parallel on as many cores you have available (typically 4 in modern
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   236
laptops and sometimes much more on high-end machines). In this
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   237
situation, \textit{mutable} variables like \texttt{i} above are evil, or
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   238
at least a major nuisance: Because if you want to distribute some of the
183
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   239
loop-iterations over the cores that are currently idle in your system,
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   240
you need to be extremely careful about who can read and overwrite
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   241
the variable \texttt{i}.\footnote{If you are of the mistaken belief that nothing
183
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   242
nasty can happen to \texttt{i} inside the \texttt{for}-loop, then you
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   243
need to go back over the C++ material.} Especially the writing operation
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   244
is critical because you do not want that conflicting writes mess about
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   245
with \texttt{i}. Take my word: an untold amount of misery has arisen
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   246
from this problem. The catch is that if you try to solve this problem in
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   247
C/C++ or Java, and be as defensive as possible about reads and writes to
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   248
\texttt{i}, then you need to synchronise access to it. The result is that
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   249
very often your program waits more than it runs, thereby
183
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   250
defeating the point of trying to run the program in parallel in the
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   251
first place. If you are less defensive, then usually all hell breaks
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   252
loose by seemingly obtaining random results. And forget the idea of
787b09fa6068 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
   253
being able to debug such code.
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   254
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   255
The central idea of functional programming is to eliminate any state
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   256
from programs---or at least from the ``interesting bits'' of the
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   257
programs. Because then it is easy to parallelise the resulting
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   258
programs: if you do not have any state, then once created, all memory
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   259
content stays unchanged and reads to such memory are absolutely safe
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   260
without the need of any synchronisation. An example is given in
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   261
Figure~\ref{mand} where in the absence of the annoying state, Scala
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   262
makes it very easy to calculate the Mandelbrot set on as many cores of
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   263
your CPU as possible. Why is it so easy in this example? Because each
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   264
pixel in the Mandelbrot set can be calculated independently and the
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   265
calculation does not need to update any variable. It is so easy in
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   266
fact that going from the sequential version of the Mandelbrot program
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   267
to the parallel version can be achieved by adding just eight
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   268
characters---in two places you have to add \texttt{.par}. Try the same
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   269
in C/C++ or Java!
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   270
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   271
\begin{figure}[p]
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   272
\begin{boxedminipage}{\textwidth}
187
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   273
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   274
A Scala program for generating pretty pictures of the Mandelbrot set.\smallskip\\ 
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   275
(See \url{https://en.wikipedia.org/wiki/Mandelbrot_set} or\\
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   276
\phantom{(See }\url{https://www.youtube.com/watch?v=aSg2Db3jF_4}):
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   277
\begin{center}    
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   278
\begin{tabular}{c}  
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   279
\includegraphics[scale=0.11]{../pics/mand1.png}\\[-8mm]\mbox{}
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   280
\end{tabular}
187
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   281
\end{center}
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   282
187
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   283
\begin{center}
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   284
\begin{tabular}{@{}p{0.45\textwidth}|p{0.45\textwidth}@{}}
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   285
  \bf sequential version: & \bf parallel version on 4 cores:\smallskip\\
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   286
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   287
  {\hfill\includegraphics[scale=0.11]{../pics/mand4.png}\hfill} &
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   288
  {\hfill\includegraphics[scale=0.11]{../pics/mand3.png}\hfill} \\
187
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   289
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   290
{\footnotesize\begin{lstlisting}[xleftmargin=-1mm]
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   291
for (y <- (0 until H)) {
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   292
  for (x <- (0 until W)) {
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   293
    
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   294
    val c = start + 
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   295
      (x * d_x + y * d_y * i)
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   296
    val iters = iterations(c, max) 
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   297
    val colour = 
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   298
      if (iters == max) black 
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   299
      else colours(iters % 16)
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   300
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   301
    pixel(x, y, colour)
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   302
  }
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   303
  viewer.updateUI()
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   304
}   
187
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   305
\end{lstlisting}}   
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   306
& 
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   307
{\footnotesize\begin{lstlisting}[xleftmargin=0mm]
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   308
for (y <- (0 until H)/*@\keys{\texttt{.par}}@*/) {
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   309
  for (x <- (0 until W)/*@\keys{\texttt{.par}}@*/) {
187
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   310
      
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   311
    val c = start + 
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   312
      (x * d_x + y * d_y * i)
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   313
    val iters = iterations(c, max) 
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   314
    val colour = 
187
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   315
      if (iters == max) black 
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   316
      else colours(iters % 16)
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   317
  
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   318
    pixel(x, y, colour)
187
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   319
  }
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   320
  viewer.updateUI()
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   321
}   
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   322
\end{lstlisting}}\\[-2mm]
187
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   323
a470dbeaa232 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
   324
\centering\includegraphics[scale=0.5]{../pics/cpu2.png} &
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   325
\centering\includegraphics[scale=0.5]{../pics/cpu1.png}
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   326
\end{tabular}
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   327
\end{center}
270
38e13601cb1b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 269
diff changeset
   328
\caption{The code of the ``main'' loops in my version of the mandelbrot program.
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   329
The parallel version differs only in \texttt{.par} being added to the
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   330
``ranges'' of the x and y coordinates. As can be seen from the CPU loads, in
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   331
the sequential version there is a lower peak for an extended period,
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   332
while in the parallel version there is a short sharp burst for
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   333
essentially the same workload\ldots{}meaning you get more work done 
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   334
in a shorter amount of time. This easy \emph{parallelisation} 
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   335
only works reliably with an immutable program.
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   336
\label{mand}} 
184
19b1e01054f6 updated
pdated
parents: 183
diff changeset
   337
\end{boxedminipage}
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   338
\end{figure}  
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   339
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   340
But remember this easy parallelisation of code requires that we
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   341
have no state in our programs\ldots{}that is no counters like
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   342
\texttt{i} in \texttt{for}-loops. You might then ask, how do I write
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   343
loops without such counters? Well, teaching you that this is possible is
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   344
one of the main points of the Scala-part in PEP. I can assure you it is
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   345
possible, but you have to get your head around it. Once you have
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   346
mastered this, it will be fun to have no state in your programs (a side
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   347
product is that it much easier to debug state-less code and also more
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   348
often than not easier to understand). So have fun with
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   349
Scala!\footnote{If you are still not convinced about the function
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   350
programming ``thing'', there are a few more arguments: a lot of research
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   351
in programming languages happens to take place in functional programming
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   352
languages. This has resulted in ultra-useful features such as
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   353
pattern-matching, strong type-systems, laziness, implicits, algebraic
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   354
datatypes  to name a few. Imperative languages seem to often lag behind
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   355
in adopting them: I know, for example, that Java will at some point in
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   356
the future support pattern-matching, which has been used for example 
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   357
in SML for at
186
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   358
least 40(!) years. See
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   359
\url{http://cr.openjdk.java.net/~briangoetz/amber/pattern-match.html}.
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   360
Also Rust, a C-like programming language that has been developed since
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   361
2010 and is gaining quite some interest, borrows many ideas from
7f132502cb37 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
   362
functional programming from yesteryear.}
170
3d760b06befa updated
Christian Urban <urbanc@in.tum.de>
parents: 152
diff changeset
   363
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   364
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   365
\subsection*{The Very Basics}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   366
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   367
One advantage of Scala over Java is that it includes an interpreter (a
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   368
REPL, or
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   369
\underline{R}ead-\underline{E}val-\underline{P}rint-\underline{L}oop)
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   370
with which you can run and test small code snippets without the need
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   371
of a compiler. This helps a lot with interactively developing
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   372
programs. It is my preferred way of writing small Scala
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   373
programs. Once you installed Scala, you can start the interpreter by
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   374
typing on the command line:
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   375
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   376
\begin{lstlisting}[language={},numbers=none,basicstyle=\ttfamily\small]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   377
$ scala
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   378
Welcome to Scala 2.13.0 (Java HotSpot(TM) 64-Bit Server VM, Java 9).
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   379
Type in expressions for evaluation. Or try :help.
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   380
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   381
scala>
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   382
\end{lstlisting}%$
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   383
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   384
\noindent The precise response may vary depending
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   385
on the version and platform where you installed Scala. At the Scala
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   386
prompt you can type things like \code{2 + 3}\;\keys{Ret} and
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   387
the output will be
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   388
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   389
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   390
scala> 2 + 3
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   391
res0: Int = 5
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   392
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   393
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   394
\noindent The answer means that he result of the addition is of type
124
880e92e5b604 updated
Christian Urban <urbanc@in.tum.de>
parents: 123
diff changeset
   395
\code{Int} and the actual result is 5; \code{res0} is a name that
125
b91ad3761732 updated
Christian Urban <urbanc@in.tum.de>
parents: 124
diff changeset
   396
Scala gives automatically to the result. You can reuse this name later
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   397
on, for example
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   398
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   399
\begin{lstlisting}[numbers=none]
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   400
scala> res0 + 4
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   401
res1: Int = 9
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   402
\end{lstlisting}
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   403
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   404
\noindent
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   405
Another classic example you can try out is
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   406
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   407
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   408
scala> print("hello world")
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   409
hello world
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   410
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   411
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   412
\noindent Note that in this case there is no result. The
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   413
reason is that \code{print} does not actually produce a result
124
880e92e5b604 updated
Christian Urban <urbanc@in.tum.de>
parents: 123
diff changeset
   414
(there is no \code{resX} and no type), rather it is a
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   415
function that causes the \emph{side-effect} of printing out a
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   416
string. Once you are more familiar with the functional
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   417
programming-style, you will know what the difference is
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   418
between a function that returns a result, like addition, and a
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   419
function that causes a side-effect, like \code{print}. We
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   420
shall come back to this point later, but if you are curious
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   421
now, the latter kind of functions always has \code{Unit} as
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   422
return type. It is just not printed by Scala. 
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   423
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   424
You can try more examples with the Scala REPL, but feel free to
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   425
first guess what the result is (not all answers by Scala are obvious):
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   426
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   427
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   428
scala> 2 + 2
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   429
scala> 1 / 2
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   430
scala> 1.0 / 2
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   431
scala> 1 / 2.0
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   432
scala> 1 / 0
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   433
scala> 1.0 / 0.0
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   434
scala> true == false
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   435
scala> true && false
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   436
scala> 1 > 1.0
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   437
scala> "12345".length
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   438
scala> List(1,2,1).size
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   439
scala> Set(1,2,1).size
265
2692329287bb updated
Christian Urban <urbanc@in.tum.de>
parents: 264
diff changeset
   440
scala> List(1) == List(1)
2692329287bb updated
Christian Urban <urbanc@in.tum.de>
parents: 264
diff changeset
   441
scala> Array(1) == Array(1)
2692329287bb updated
Christian Urban <urbanc@in.tum.de>
parents: 264
diff changeset
   442
scala> Array(1).sameElements(Array(1))
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   443
\end{lstlisting}\smallskip
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   444
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   445
\noindent
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   446
Please take the Scala REPL seriously: If you want to take advantage of my
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   447
reference implementation for the assignments, you will need to be
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   448
able to ``play around'' with it!
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   449
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   450
\subsection*{Standalone Scala Apps}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   451
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   452
If you want to write a stand-alone app in Scala, you can
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   453
implement an object that is an instance of \code{App}. For example
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   454
write
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   455
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   456
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   457
object Hello extends App {
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   458
    println("hello world")
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   459
}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   460
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   461
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   462
\noindent save it in a file, say {\tt hello-world.scala}, and
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   463
then run the compiler (\texttt{scalac}) and start the runtime
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   464
environment (\texttt{scala}):
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   465
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   466
\begin{lstlisting}[language={},numbers=none,basicstyle=\ttfamily\small]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   467
$ scalac hello-world.scala
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   468
$ scala Hello
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   469
hello world
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   470
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   471
124
880e92e5b604 updated
Christian Urban <urbanc@in.tum.de>
parents: 123
diff changeset
   472
\noindent
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   473
Like Java, Scala targets the JVM and consequently
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   474
Scala programs can also be executed by the bog-standard Java
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   475
Runtime. This only requires the inclusion of {\tt
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   476
scala-library.jar}, which on my computer can be done as
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   477
follows:
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   478
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   479
\begin{lstlisting}[language={},numbers=none,basicstyle=\ttfamily\small]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   480
$ scalac hello-world.scala
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   481
$ java -cp /usr/local/src/scala/lib/scala-library.jar:. Hello
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   482
hello world
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   483
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   484
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   485
\noindent You might need to adapt the path to where you have
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   486
installed Scala.
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   487
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   488
\subsection*{Values}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   489
124
880e92e5b604 updated
Christian Urban <urbanc@in.tum.de>
parents: 123
diff changeset
   490
In the lectures I will try to avoid as much as possible the term
880e92e5b604 updated
Christian Urban <urbanc@in.tum.de>
parents: 123
diff changeset
   491
\emph{variables} familiar from other programming languages. The reason
880e92e5b604 updated
Christian Urban <urbanc@in.tum.de>
parents: 123
diff changeset
   492
is that Scala has \emph{values}, which can be seen as abbreviations of
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   493
larger expressions. The keyword for defining values is \code{val}.
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   494
For example
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   495
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   496
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   497
scala> val x = 42
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   498
x: Int = 42
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   499
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   500
scala> val y = 3 + 4
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   501
y: Int = 7
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   502
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   503
scala> val z = x / y
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   504
z: Int = 6
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   505
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   506
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   507
\noindent
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   508
As can be seen, we first define \code{x} and {y} with admittedly some silly
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   509
expressions, and then reuse these values in the definition of \code{z}.
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   510
All easy, right? Why the kerfuffle about values? Well, values are
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   511
\emph{immutable}. You cannot change their value after you defined them.
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   512
If you try to reassign \code{z} above, Scala will yell at you:
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   513
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   514
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   515
scala> z = 9
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   516
error: reassignment to val
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   517
       z = 9
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   518
         ^
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   519
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   520
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   521
\noindent
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   522
So it would be a bit absurd to call values as variables...you cannot
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   523
change them; they cannot vary. You might think you can reassign them like
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   524
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   525
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   526
scala> val x = 42
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   527
scala> val z = x / 7
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   528
scala> val x = 70
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   529
scala> println(z) 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   530
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   531
124
880e92e5b604 updated
Christian Urban <urbanc@in.tum.de>
parents: 123
diff changeset
   532
\noindent but try to guess what Scala will print out 
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   533
for \code{z}?  Will it be \code{6} or \code{10}? A final word about
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   534
values: Try to stick to the convention that names of values should be
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   535
lower case, like \code{x}, \code{y}, \code{foo41} and so on. Upper-case
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   536
names you should reserve for what is called \emph{constructors}. And 
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   537
forgive me when I call values as variables\ldots{}it is just something that
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   538
has been in imprinted into my developer-DNA during my early days and
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   539
is difficult to get rid of.~\texttt{;o)}  
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   540
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   541
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   542
\subsection*{Function Definitions}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   543
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   544
We do functional programming! So defining functions will be our main occupation.
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   545
As an example, a function named \code{f} taking a single argument of type 
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   546
\code{Int} can be defined in Scala as follows:
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   547
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   548
\begin{lstlisting}[numbers=none]
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   549
def f(x: Int) : String = ...EXPR...
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   550
\end{lstlisting} 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   551
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   552
\noindent
124
880e92e5b604 updated
Christian Urban <urbanc@in.tum.de>
parents: 123
diff changeset
   553
This function returns the value resulting from evaluating the expression
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   554
\code{EXPR} (whatever is substituted for this). Since we declared
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   555
\code{String}, the result of this function will be of type
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   556
\code{String}. It is a good habit to always include this information
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   557
about the return type, while it is only strictly necessary to give this
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   558
type in recursive functions. Simple examples of Scala functions are:
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   559
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   560
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   561
def incr(x: Int) : Int = x + 1
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   562
def double(x: Int) : Int = x + x
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   563
def square(x: Int) : Int = x * x
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   564
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   565
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   566
\noindent
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   567
The general scheme for a function is
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   568
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   569
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   570
def fname(arg1: ty1, arg2: ty2,..., argn: tyn): rty = {
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   571
  ...BODY...
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   572
}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   573
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   574
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   575
\noindent
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   576
where each argument, \texttt{arg1}, \texttt{arg2} and so on, requires 
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   577
its type and the result type of the
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   578
function, \code{rty}, should also be given. If the body of the function is
124
880e92e5b604 updated
Christian Urban <urbanc@in.tum.de>
parents: 123
diff changeset
   579
more complex, then it can be enclosed in braces, like above. If it it
880e92e5b604 updated
Christian Urban <urbanc@in.tum.de>
parents: 123
diff changeset
   580
is just a simple expression, like \code{x + 1}, you can omit the
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   581
braces. Very often functions are recursive (that is call themselves),
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   582
like the venerable factorial function:
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   583
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   584
\begin{lstlisting}[numbers=none]
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   585
def fact(n: Int) : Int = 
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   586
  if (n == 0) 1 else n * fact(n - 1)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   587
\end{lstlisting}
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   588
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   589
\noindent
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   590
We could also have written this with braces as
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   591
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   592
\begin{lstlisting}[numbers=none]
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   593
def fact(n: Int) : Int = {
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   594
  if (n == 0) 1 
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   595
  else n * fact(n - 1)
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   596
}    
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   597
\end{lstlisting}
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   598
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   599
\noindent
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   600
but this seems a bit overkill for a small function like \code{fact}.
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
   601
Note that Scala does not have a \code{then}-keyword in an \code{if}-statement.
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   602
Note also that there are a few other ways of how to define a function. We 
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   603
will see some of them in the next sections.
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   604
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   605
Before we go on, let me explain one tricky point in function
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   606
definitions, especially in larger definitions. What does a Scala function
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   607
actually return? Scala has a \code{return} keyword, but it is
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   608
used for something different than in Java (and C/C++). Therefore please
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   609
make sure no \code{return} slips into your Scala code.
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   610
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   611
So in the absence of \code{return}, what value does a Scala function
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   612
actually produce? A rule-of-thumb is whatever is in the last line of the
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   613
function is the value that will be returned. Consider the following
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   614
example:\footnote{We could have written this function in just one line,
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   615
but for the sake of argument lets keep the two intermediate values.}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   616
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   617
\begin{lstlisting}[numbers=none]
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   618
def iaverage(xs: List[Int]) : Int = {
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   619
  val s = xs.sum
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   620
  val n = xs.length
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   621
  s / n
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   622
}    
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   623
\end{lstlisting}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   624
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   625
\noindent In this example the expression \code{s / n} is in the last
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   626
line of the function---so this will be the result the function
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   627
calculates. The two lines before just calculate intermediate values.
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   628
This principle of the `last-line' comes in handy when you need to print
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   629
out values, for example, for debugging purposes. Suppose you want
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   630
rewrite the function as
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   631
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   632
\begin{lstlisting}[numbers=none]
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   633
def iaverage(xs: List[Int]) : Int = {
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   634
  val s = xs.sum
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   635
  val n = xs.length
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   636
  val h = xs.head
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   637
  println(s"Input $xs with first element $h")
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   638
  s / n
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   639
}    
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   640
\end{lstlisting}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   641
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   642
\noindent
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   643
Here the function still only returns the expression in the last line.
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   644
The \code{println} before just prints out some information about the
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   645
input of this function, but does not contribute to the result of the
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   646
function. Similarly, the value \code{h} is used in the \code{println}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   647
but does not contribute to what integer is returned. However note that
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   648
the idea with the ``last line'' is only a rough rule-of-thumb. A better
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   649
rule is probably, the last expression that is evaluated in the function.
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   650
Consider the following version of \code{iaverage}:
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   651
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   652
\begin{lstlisting}[numbers=none]
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   653
def iaverage(xs: List[Int]) : Int = {
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   654
  if (xs.length == 0) 0
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   655
  else xs.sum / xs.length
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   656
}    
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   657
\end{lstlisting}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   658
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   659
\noindent
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   660
What does this function return? Well are two possibilities: either the
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   661
result of \code{xs.sum / xs.length} in the last line provided the list
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   662
\code{xs} is nonempty, \textbf{or} if the list is empty, then it will
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   663
return \code{0} from the \code{if}-branch (which is technically not the
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   664
last line, but the last expression evaluated by the function in the
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   665
empty-case).
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   666
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   667
Summing up, do not use \code{return} in your Scala code! A function
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   668
returns what is evaluated by the function as the last expression. There
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   669
is always only one such last expression. Previous expressions might
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   670
calculate intermediate values, but they are not returned.
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   671
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   672
\subsection*{Loops, or better the Absence thereof}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   673
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   674
Coming from Java or C/C++, you might be surprised that Scala does
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   675
not really have loops. It has instead, what is in functional
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   676
programming called, \emph{maps}. To illustrate how they work,
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   677
let us assume you have a list of numbers from 1 to 8 and want to
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   678
build the list of squares. The list of numbers from 1 to 8 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   679
can be constructed in Scala as follows:
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   680
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   681
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   682
scala> (1 to 8).toList
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   683
res1: List[Int] = List(1, 2, 3, 4, 5, 6, 7, 8)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   684
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   685
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   686
\noindent Generating from this list the list of corresponding 
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   687
squares in a programming language such as Java, you would assume 
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   688
the list is given as a kind of array. You would then iterate, or loop,
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   689
an index over this array and replace each entry in the array
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   690
by the square. Right? In Scala, and in other functional
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   691
programming languages, you use maps to achieve the same. 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   692
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   693
A map essentially takes a function that describes how each element is
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   694
transformed (in this example the function is $n \rightarrow n * n$) and
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   695
a list over which this function should work. Pictorially you can think
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   696
of the idea behind maps as follows:
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   697
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   698
\begin{center}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   699
\begin{tikzpicture}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   700
                      
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   701
  \node (A0) at (1.2,0) {\texttt{List(}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   702
  \node (A1) at (2.0,0) {\texttt{1\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   703
  \node (A2) at (2.9,0) {\texttt{2\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   704
  \node (A3) at (3.8,0) {\texttt{3\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   705
  \node (A4) at (4.7,0) {\texttt{4\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   706
  \node (A5) at (5.6,0) {\texttt{5\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   707
  \node (A6) at (6.5,0) {\texttt{6\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   708
  \node (A7) at (7.4,0) {\texttt{7\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   709
  \node (A8) at (8.3,0) {\texttt{8)}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   710
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   711
  \node (B0) at (1.2,-3) {\texttt{List(}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   712
  \node (B1) at (2.0,-3) {\texttt{1\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   713
  \node (B2) at (3.0,-3) {\texttt{4\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   714
  \node (B3) at (4.1,-3) {\texttt{9\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   715
  \node (B4) at (5.2,-3) {\texttt{16\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   716
  \node (B5) at (6.3,-3) {\texttt{25\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   717
  \node (B6) at (7.4,-3) {\texttt{36\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   718
  \node (B7) at (8.4,-3) {\texttt{49\makebox[0mm]{ ,}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   719
  \node (B8) at (9.4,-3) {\texttt{64\makebox[0mm]{ )}}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   720
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   721
  \draw [->,line width=1mm] (A1.south) -- (B1.north);
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   722
  \draw [->,line width=1mm] (A2.south) -- (B2.north);
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   723
  \draw [->,line width=1mm] (A3.south) -- (B3.north);
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   724
  \draw [->,line width=1mm] (A4.south) -- (B4.north);
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   725
  \draw [->,line width=1mm] (A5.south) -- (B5.north);
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   726
  \draw [->,line width=1mm] (A6.south) -- (B6.north);
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   727
  \draw [->,line width=1mm] (A7.south) -- (B7.north);
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   728
  \draw [->,line width=1mm] (A8.south) -- (B8.north);
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   729
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   730
  \node [red] (Q0) at (-0.3,0) {\large\texttt{n}}; 
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   731
  \node (Q1) at (-0.3,-0.1) {};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   732
  \node (Q2) at (-0.3,-2.8) {};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   733
  \node [red] (Q3) at (-0.3,-2.95) {\large\texttt{n\,*\,n}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   734
  \draw [->,red,line width=1mm] (Q1.south) -- (Q2.north);
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   735
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   736
  \node [red] at (-1.3,-1.5) {\huge{}\it\textbf{map}};
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   737
 \end{tikzpicture}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   738
\end{center}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   739
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   740
\noindent
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   741
On top is the ``input'' list we want to transform; on the left is the
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   742
``map'' function for how to transform each element in the input list
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   743
(the square function in this case); at the bottom is the result list of
273
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   744
the map. This means that a map produces a \emph{new} list, unlike a
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   745
for-loop in Java or C/C++ which would most likely just update the
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   746
existing list.
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   747
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   748
Now there are two ways to express such maps in Scala. The first way is
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   749
called a \emph{for-comprehension}. The keywords are \code{for} and
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   750
\code{yield}. Squaring the numbers from 1 to 8 with a for-comprehension
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   751
would look as follows:
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   752
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   753
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   754
scala> for (n <- (1 to 8).toList) yield n * n
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   755
res2: List[Int] = List(1, 4, 9, 16, 25, 36, 49, 64)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   756
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   757
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   758
\noindent  This for-comprehension states that from the list of numbers
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   759
we draw elements that are given the name \code{n} (which can be
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   760
arbitrary, not just \code{n}) and compute the result of \code{n * n}.
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   761
This way of writing a map resembles a bit the for-loops from imperative
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   762
languages, even though the idea behind for-loops and for-comprehensions
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   763
is quite different. Also, this is a simple example---what comes after
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   764
\code{yield} can be a complex expression enclosed in \texttt{\{...\}}.
273
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   765
A more complicated example might be
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   766
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   767
\begin{lstlisting}[numbers=none]
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   768
scala> for (n <- (1 to 8).toList) yield {
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   769
         val i = n + 1
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   770
         val j = n - 1
273
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   771
         i * j + 1
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   772
       }
273
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   773
res3: List[Int] = List(1, 4, 9, 16, 25, 36, 49, 64)
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   774
\end{lstlisting}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   775
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   776
As you can see in for-comprehensions above, we specified the list where
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   777
each \code{n} comes from, namely \code{(1 to 8).toList}, and how each
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   778
element needs to be transformed. This can also be expressed in a second
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   779
way in Scala by using directly the function \code{map} as follows:
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   780
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   781
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   782
scala> (1 to 8).toList.map(n => n * n)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   783
res3 = List(1, 4, 9, 16, 25, 36, 49, 64)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   784
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   785
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   786
\noindent In this way, the expression \code{n => n * n} stands for the
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   787
function that calculates the square (this is how the \code{n}s are
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   788
transformed by the map).  It might not be obvious, but
273
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   789
for-comprehensions above are just syntactic sugar: when compiling such
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   790
code, Scala translates for-comprehensions into equivalent maps. This
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   791
even works when for-comprehensions get more complicated (see below).
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   792
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   793
The very charming feature of Scala is that such maps or
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   794
for-comprehensions can be written for any kind of data collection, such
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   795
as lists, sets, vectors, options and so on. For example if we instead
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   796
compute the remainders modulo 3 of this list, we can write
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   797
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   798
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   799
scala> (1 to 8).toList.map(n => n % 3)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   800
res4 = List(1, 2, 0, 1, 2, 0, 1, 2)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   801
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   802
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   803
\noindent If we, however, transform the numbers 1 to 8 not
270
38e13601cb1b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 269
diff changeset
   804
into a list, but into a set, and then compute the remainders
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   805
modulo 3 we obtain
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   806
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   807
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   808
scala> (1 to 8).toSet[Int].map(n => n % 3)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   809
res5 = Set(2, 1, 0)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   810
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   811
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   812
\noindent This is the correct result for sets, as there are
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   813
only three equivalence classes of integers modulo 3. Note that
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   814
in this example we need to ``help'' Scala to transform the
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   815
numbers into a set of integers by explicitly annotating the
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   816
type \code{Int}. Since maps and for-comprehensions are
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   817
just syntactic variants of each other, the latter can also be
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   818
written as
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   819
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   820
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   821
scala> for (n <- (1 to 8).toSet[Int]) yield n % 3
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   822
res5 = Set(2, 1, 0)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   823
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   824
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   825
For-comprehensions can also be nested and the selection of 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   826
elements can be guarded. For example if we want to pair up
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   827
the numbers 1 to 4 with the letters a to c, we can write
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   828
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   829
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   830
scala> for (n <- (1 to 4).toList; 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   831
            m <- ('a' to 'c').toList) yield (n, m)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   832
res6 = List((1,a), (1,b), (1,c), (2,a), (2,b), (2,c), 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   833
            (3,a), (3,b), (3,c), (4,a), (4,b), (4,c))
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   834
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   835
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   836
\noindent 
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   837
In this example the for-comprehension ranges over two lists, and
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   838
produces a list of pairs as output. Or if we want to find all pairs of
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   839
numbers between 1 and 3 where the sum is an even number, we can write
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   840
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   841
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   842
scala> for (n <- (1 to 3).toList; 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   843
            m <- (1 to 3).toList;
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   844
            if (n + m) % 2 == 0) yield (n, m)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   845
res7 = List((1,1), (1,3), (2,2), (3,1), (3,3))
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   846
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   847
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   848
\noindent The \code{if}-condition in this for-comprehension filters out
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   849
all pairs where the sum is not even (therefore \code{(1, 2)} is not in
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   850
the result because the sum is odd). 
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   851
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   852
To sum up, maps (or for-comprehensions) transform one collection into
273
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   853
another. For example a list of \code{Int}s into a list of squares, and
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   854
so on. There is no need for for-loops in Scala. But please do not be
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   855
tempted to write anything like
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   856
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   857
\begin{lstlisting}[numbers=none]
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   858
scala> val cs = ('a' to 'h').toList
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   859
scala> for (n <- (0 until cs.length).toList) 
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   860
          yield cs(n).capitalize
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   861
res8: List[Char] = List(A, B, C, D, E, F, G, H)
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   862
\end{lstlisting}
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   863
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   864
\noindent
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   865
This is accepted Scala-code, but utterly bad style. It can be written
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   866
much clearer as:
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   867
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   868
\begin{lstlisting}[numbers=none]
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   869
scala> val cs = ('a' to 'h').toList
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   870
scala> for (c <- cs) yield c.capitalize
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   871
res9: List[Char] = List(A, B, C, D, E, F, G, H)
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
   872
\end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   873
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   874
\subsection*{Results and Side-Effects}
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   875
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   876
While hopefully this all about maps looks reasonable, there is one
273
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   877
complication: In the examples above we always wanted to transform one
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   878
list into another list (e.g.~list of squares), or one set into another
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   879
set (set of numbers into set of remainders modulo 3). What happens if we
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   880
just want to print out a list of integers? In these cases the
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   881
for-comprehensions need to be modified. The reason is that \code{print},
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   882
you guessed it, does not produce any result, but only produces what is
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   883
in the functional-programming-lingo called a \emph{side-effect}\ldots it
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   884
prints something out on the screen. Printing out the list of numbers
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   885
from 1 to 5 would look as follows
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   886
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   887
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   888
scala> for (n <- (1 to 5).toList) print(n)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   889
12345
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   890
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   891
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   892
\noindent
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   893
where you need to omit the keyword \code{yield}. You can
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   894
also do more elaborate calculations such as
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   895
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   896
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   897
scala> for (n <- (1 to 5).toList) {
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   898
  val square = n * n
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   899
  println(s"$n * $n = $square") 
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   900
}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   901
1 * 1 = 1
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   902
2 * 2 = 4
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   903
3 * 3 = 9
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   904
4 * 4 = 16
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   905
5 * 5 = 25
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   906
\end{lstlisting}%$
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   907
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   908
\noindent In this code I use a variable assignment (\code{val
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
   909
square = ...} ) and also what is called in Scala a
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   910
\emph{string interpolation}, written \code{s"..."}. The latter
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   911
is for printing out an equation. It allows me to refer to the
270
38e13601cb1b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 269
diff changeset
   912
integer values \code{n} and \code{square} inside a string.
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   913
This is very convenient for printing out ``things''. 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   914
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   915
The corresponding map construction for functions with 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   916
side-effects is in Scala called \code{foreach}. So you 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   917
could also write
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   918
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   919
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   920
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   921
scala> (1 to 5).toList.foreach(n => print(n))
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   922
12345
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   923
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   924
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   925
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   926
\noindent or even just
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   927
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   928
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   929
scala> (1 to 5).toList.foreach(print)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   930
12345
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   931
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   932
273
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   933
\noindent 
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   934
If you want to find out more about maps and functions with
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   935
side-effects, you can ponder about the response Scala gives if
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   936
you replace \code{foreach} by \code{map} in the expression
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   937
above. Scala will still allow \code{map} with side-effect
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   938
functions, but then reacts with a slightly interesting result.
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   939
273
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   940
\subsection*{Aggregates}
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   941
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   942
There is one more usage of for-loops in Java, C/C++ and the like:
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   943
sometimes you want to \emph{aggregate} something about a list, for
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   944
example to sum up all its elements. In this case you cannot use map,
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   945
because maps \emph{transform} one data collection into another data
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   946
collection. They cannot be used to generate a single integer
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   947
representing an aggregate. So how is this done in Scala? Let us
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   948
suppose you want to sum up all elements from a list. You might
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   949
be tempted to write something like
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   950
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   951
\begin{lstlisting}[numbers=none]
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   952
var cnt = 0
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   953
for (n <- (1 to 8).toList) {
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   954
  cnt += n
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   955
}
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   956
print(cnt)
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   957
\end{lstlisting}
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   958
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   959
\noindent
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   960
and indeed is accepted Scala code and produces the expected result,
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   961
namely \code{36}, \textbf{BUT} this is imperative style and not
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   962
permitted. It uses a \code{var} and therefore violates the immutability
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   963
property I ask for in your code.
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   964
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   965
So how to do that same thing without using a \code{var}? Well there are
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   966
several ways. One way is to define the following recursive
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   967
\code{sum}-function:
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   968
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   969
\begin{lstlisting}[numbers=none]
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   970
def sum(xs: List[Int]) : Int = 
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   971
  if (xs.isEmpty) 0 else xs.head + sum(xs.tail)
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   972
\end{lstlisting}  
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   973
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   974
\noindent
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   975
You can then call \code{sum((1 to 8).toList)} and obtain the same result
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   976
without a mutable for-loop. Obviously for simple things like sum, you
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   977
could have written \code{xs.sum} in the first place. But not all
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   978
aggregate functions are pre-defined and often you have to write your own
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   979
recursive function for this.
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   980
9cf4d3c3abd1 updated
Christian Urban <urbanc@in.tum.de>
parents: 272
diff changeset
   981
271
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   982
\subsection*{Higher-Order Functions}
5c7279e09b15 updated
Christian Urban <urbanc@in.tum.de>
parents: 270
diff changeset
   983
274
Christian Urban <urbanc@in.tum.de>
parents: 273
diff changeset
   984
TBD
Christian Urban <urbanc@in.tum.de>
parents: 273
diff changeset
   985
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   986
\subsection*{Types}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   987
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   988
In most functional programming languages, types play an
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   989
important role. Scala is such a language. You have already
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   990
seen built-in types, like \code{Int}, \code{Boolean},
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   991
\code{String} and \code{BigInt}, but also user-defined ones,
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   992
like \code{Rexp} (see coursework). Unfortunately, types can be a thorny
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   993
subject, especially in Scala. For example, why do we need to
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   994
give the type to \code{toSet[Int]}, but not to \code{toList}?
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   995
The reason is the power of Scala, which sometimes means it
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   996
cannot infer all necessary typing information. At the
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
   997
beginning, while getting familiar with Scala, I recommend a
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   998
``play-it-by-ear-approach'' to types. Fully understanding
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   999
type-systems, especially complicated ones like in Scala, can
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1000
take a module on their own.\footnote{Still, such a study can
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1001
be a rewarding training: If you are in the business of
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1002
designing new programming languages, you will not be able to
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1003
turn a blind eye to types. They essentially help programmers
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1004
to avoid common programming errors and help with maintaining
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1005
code.}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1006
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1007
In Scala, types are needed whenever you define an inductive
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1008
datatype and also whenever you define functions (their
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1009
arguments and their results need a type). Base types are types
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1010
that do not take any (type)arguments, for example \code{Int}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1011
and \code{String}. Compound types take one or more arguments,
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1012
which as seen earlier need to be given in angle-brackets, for
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1013
example \code{List[Int]} or \code{Set[List[String]]} or 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1014
\code{Map[Int, Int]}.
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1015
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1016
There are a few special type-constructors that fall outside
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1017
this pattern. One is for tuples, where the type is written
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1018
with parentheses. For example 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1019
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1020
\begin{lstlisting}[ numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1021
(Int, Int, String)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1022
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1023
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1024
\noindent is for a triple (a tuple with three components---two
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1025
integers and a string). Tuples are helpful if you want to
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1026
define functions with multiple results, say the function
270
38e13601cb1b updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 269
diff changeset
  1027
returning the quotient and remainder of two numbers. For this
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1028
you might define:
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1029
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1030
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1031
\begin{lstlisting}[ numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1032
def quo_rem(m: Int, n: Int) : (Int, Int) = (m / n, m % n)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1033
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1034
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1035
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1036
\noindent Since this function returns a pair of integers, its
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1037
return type needs to be of type \code{(Int, Int)}.
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1038
Incidentally, this is also the input type of this function.
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1039
Notice this function takes \emph{two} arguments, namely
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1040
\code{m} and \code{n}, both of which are integers. They are
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1041
``packaged'' in a pair. Consequently the complete type of
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1042
\code{quo_rem} is
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1043
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1044
\begin{lstlisting}[ numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1045
(Int, Int) => (Int, Int)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1046
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1047
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1048
Another special type-constructor is for functions, written as
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1049
the arrow \code{=>}. For example, the type \code{Int =>
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1050
String} is for a function that takes an integer as input
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1051
argument and produces a string as result. A function of this
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1052
type is for instance
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1053
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1054
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1055
def mk_string(n: Int) : String = n match {
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1056
  case 0 => "zero"
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1057
  case 1 => "one"
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1058
  case 2 => "two"
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1059
  case _ => "many" 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1060
} 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1061
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1062
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1063
\noindent It takes an integer as input argument and returns a
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1064
string. Unlike other functional programming languages, there
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1065
is in Scala no easy way to find out the types of existing
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1066
functions, except by looking into the documentation
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1067
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1068
\begin{quote}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1069
\url{http://www.scala-lang.org/api/current/}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1070
\end{quote}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1071
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1072
The function arrow can also be iterated, as in 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1073
\code{Int => String => Boolean}. This is the type for a function
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1074
taking an integer as first argument and a string as second,
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1075
and the result of the function is a boolean. Though silly, a
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1076
function of this type would be
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1077
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1078
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1079
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1080
def chk_string(n: Int)(s: String) : Boolean = 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1081
  mk_string(n) == s
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1082
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1083
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1084
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1085
\noindent which checks whether the integer \code{n}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1086
corresponds to the name \code{s} given by the function
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1087
\code{mk\_string}. Notice the unusual way of specifying the
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1088
arguments of this function: the arguments are given one after
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1089
the other, instead of being in a pair (what would be the type
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1090
of this function then?). This way of specifying the arguments
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1091
can be useful, for example in situations like this
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1092
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1093
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1094
scala> List("one", "two", "three", "many").map(chk_string(2))
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1095
res4 = List(false, true, false, false)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1096
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1097
scala> List("one", "two", "three", "many").map(chk_string(3))
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1098
res5 = List(false, false, false, true)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1099
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1100
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1101
\noindent In each case we can give to \code{map} a specialised
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1102
version of \code{chk_string}---once specialised to 2 and once
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1103
to 3. This kind of ``specialising'' a function is called
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1104
\emph{partial application}---we have not yet given to this
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1105
function all arguments it needs, but only some of them.
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1106
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1107
Coming back to the type \code{Int => String => Boolean}. The
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1108
rule about such function types is that the right-most type
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1109
specifies what the function returns (a boolean in this case).
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1110
The types before that specify how many arguments the function
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1111
expects and what their type is (in this case two arguments,
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1112
one of type \code{Int} and another of type \code{String}).
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1113
Given this rule, what kind of function has type
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1114
\mbox{\code{(Int => String) => Boolean}}? Well, it returns a
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1115
boolean. More interestingly, though, it only takes a single
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1116
argument (because of the parentheses). The single argument
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1117
happens to be another function (taking an integer as input and
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1118
returning a string). Remember that \code{mk_string} is just 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1119
such a function. So how can we use it? For this define
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1120
the somewhat silly function \code{apply_3}:
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1121
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1122
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1123
def apply_3(f: Int => String): Bool = f(3) == "many"
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1124
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1125
scala> apply_3(mk_string)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1126
res6 = true
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1127
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1128
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1129
You might ask: Apart from silly functions like above, what is
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1130
the point of having functions as input arguments to other
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1131
functions? In Java there is indeed no need of this kind of
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1132
feature: at least in the past it did not allow such
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1133
constructions. I think, the point of Java 8 and successors was to lift this
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1134
restriction. But in all functional programming languages,
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1135
including Scala, it is really essential to allow functions as
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1136
input argument. Above you already seen \code{map} and
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1137
\code{foreach} which need this. Consider the functions
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1138
\code{print} and \code{println}, which both print out strings,
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1139
but the latter adds a line break. You can call \code{foreach}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1140
with either of them and thus changing how, for example, five
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1141
numbers are printed.
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1142
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1143
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1144
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1145
scala> (1 to 5).toList.foreach(print)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1146
12345
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1147
scala> (1 to 5).toList.foreach(println)
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1148
1
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1149
2
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1150
3
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1151
4
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1152
5
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1153
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1154
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1155
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1156
\noindent This is actually one of the main design principles
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1157
in functional programming. You have generic functions like
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1158
\code{map} and \code{foreach} that can traverse data containers,
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1159
like lists or sets. They then take a function to specify what
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1160
should be done with each element during the traversal. This
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1161
requires that the generic traversal functions can cope with
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1162
any kind of function (not just functions that, for example,
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1163
take as input an integer and produce a string like above).
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1164
This means we cannot fix the type of the generic traversal
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1165
functions, but have to keep them
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
  1166
\emph{polymorphic}.\footnote{Another interesting topic about
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1167
types, but we omit it here for the sake of brevity.} 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1168
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1169
There is one more type constructor that is rather special. It
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1170
is called \code{Unit}. Recall that \code{Boolean} has two
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1171
values, namely \code{true} and \code{false}. This can be used,
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1172
for example, to test something and decide whether the test
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1173
succeeds or not. In contrast the type \code{Unit} has only a
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1174
single value, written \code{()}. This seems like a completely
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1175
useless type and return value for a function, but is actually
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1176
quite useful. It indicates when the function does not return
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1177
any result. The purpose of these functions is to cause
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1178
something being written on the screen or written into a file,
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1179
for example. This is what is called they cause some effect on 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1180
the side, namely a new content displayed on the screen or some
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1181
new data in a file. Scala uses the \code{Unit} type to indicate
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1182
that a function does not have a result, but potentially causes
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1183
some side-effect. Typical examples are the printing functions, 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1184
like \code{print}.
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1185
272
a091de62e3f8 updated
Christian Urban <urbanc@in.tum.de>
parents: 271
diff changeset
  1186
\subsection*{User-Defined Types}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1187
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1188
% \subsection*{Cool Stuff}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1189
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1190
% The first wow-moment I had with Scala was when I came across
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1191
% the following code-snippet for reading a web-page. 
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1192
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1193
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1194
% \begin{lstlisting}[ numbers=none]
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1195
% import io.Source
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1196
% val url = """http://www.inf.kcl.ac.uk/staff/urbanc/"""
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1197
% Source.fromURL(url)("ISO-8859-1").take(10000).mkString
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1198
% \end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1199
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1200
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1201
% \noindent These three lines return a string containing the
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1202
% HTML-code of my webpage. It actually already does something
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1203
% more sophisticated, namely only returns the first 10000
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1204
% characters of a webpage in case it is too large. Why is that
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1205
% code-snippet of any interest? Well, try implementing
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1206
% reading-from-a-webpage in Java. I also like the possibility of
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1207
% triple-quoting strings, which I have only seen in Scala so
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1208
% far. The idea behind this is that in such a string all
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1209
% characters are interpreted literally---there are no escaped
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1210
% characters, like \verb|\n| for newlines.
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1211
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1212
% My second wow-moment I had with a feature of Scala that other
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1213
% functional programming languages do not have. This feature is
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1214
% about implicit type conversions. If you have regular
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1215
% expressions and want to use them for language processing you
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1216
% often want to recognise keywords in a language, for example
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1217
% \code{for},{} \code{if},{} \code{yield} and so on. But the
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1218
% basic regular expression \code{CHAR} can only recognise a
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1219
% single character. In order to recognise a whole string, like
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1220
% \code{for}, you have to put many of those together using
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1221
% \code{SEQ}:
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1222
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1223
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1224
% \begin{lstlisting}[numbers=none]
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1225
% SEQ(CHAR('f'), SEQ(CHAR('o'), CHAR('r')))
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1226
% \end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1227
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1228
% \noindent This gets quickly unreadable when the strings and
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1229
% regular expressions get more complicated. In other functional
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1230
% programming languages, you can explicitly write a conversion
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1231
% function that takes a string, say \dq{\pcode{for}}, and
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1232
% generates the regular expression above. But then your code is
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1233
% littered with such conversion functions.
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1234
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1235
% In Scala you can do better by ``hiding'' the conversion
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1236
% functions. The keyword for doing this is \code{implicit} and
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1237
% it needs a built-in library called 
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1238
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1239
% \begin{lstlisting}[numbers=none]
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1240
% scala.language.implicitConversions
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1241
% \end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1242
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1243
% \noindent
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1244
% Consider the code
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1245
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1246
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1247
% \begin{lstlisting}[language=Scala]
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1248
% import scala.language.implicitConversions
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1249
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1250
% def charlist2rexp(s: List[Char]) : Rexp = s match {
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1251
%   case Nil => EMPTY
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1252
%   case c::Nil => CHAR(c)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1253
%   case c::s => SEQ(CHAR(c), charlist2rexp(s))
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1254
% }
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1255
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1256
% implicit def string2rexp(s: String) : Rexp = 
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1257
%   charlist2rexp(s.toList)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1258
% \end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1259
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1260
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1261
% \noindent where the first seven lines implement a function
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1262
% that given a list of characters generates the corresponding
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1263
% regular expression. In Lines 9 and 10, this function is used
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1264
% for transforming a string into a regular expression. Since the
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1265
% \code{string2rexp}-function is declared as \code{implicit},
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1266
% the effect will be that whenever Scala expects a regular
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1267
% expression, but I only give it a string, it will automatically
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1268
% insert a call to the \code{string2rexp}-function. I can now
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1269
% write for example
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1270
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1271
% \begin{lstlisting}[numbers=none]
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1272
% scala> ALT("ab", "ac")
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1273
% res9 = ALT(SEQ(CHAR(a),CHAR(b)),SEQ(CHAR(a),CHAR(c)))
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1274
% \end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1275
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1276
% \noindent Recall that \code{ALT} expects two regular
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1277
% expressions as arguments, but I only supply two strings. The
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1278
% implicit conversion function will transform the string into a
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1279
% regular expression.
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1280
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1281
% Using implicit definitions, Scala allows me to introduce
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1282
% some further syntactic sugar for regular expressions:
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1283
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1284
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1285
% \begin{lstlisting}[ numbers=none]
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1286
% implicit def RexpOps(r: Rexp) = new {
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1287
%   def | (s: Rexp) = ALT(r, s)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1288
%   def ~ (s: Rexp) = SEQ(r, s)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1289
%   def % = STAR(r)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1290
% }
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1291
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1292
% implicit def stringOps(s: String) = new {
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1293
%   def | (r: Rexp) = ALT(s, r)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1294
%   def | (r: String) = ALT(s, r)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1295
%   def ~ (r: Rexp) = SEQ(s, r)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1296
%   def ~ (r: String) = SEQ(s, r)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1297
%   def % = STAR(s)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1298
% }
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1299
% \end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1300
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1301
 
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1302
% \noindent This might seem a bit overly complicated, but its effect is
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1303
% that I can now write regular expressions such as $ab + ac$ 
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1304
% simply as
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1305
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1306
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1307
% \begin{lstlisting}[numbers=none]
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1308
% scala> "ab" | "ac"
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1309
% res10 = ALT(SEQ(CHAR(a),CHAR(b)),SEQ(CHAR(a),CHAR(c)))
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1310
% \end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1311
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1312
 
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1313
% \noindent I leave you to figure out what the other
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1314
% syntactic sugar in the code above stands for.
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1315
 
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1316
% One more useful feature of Scala is the ability to define
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1317
% functions with varying argument lists. This is a feature that
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1318
% is already present in old languages, like C, but seems to have
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1319
% been forgotten in the meantime---Java does not have it. In the
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1320
% context of regular expressions this feature comes in handy:
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1321
% Say you are fed up with writing many alternatives as
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1322
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1323
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1324
% \begin{lstlisting}[numbers=none]
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1325
% ALT(..., ALT(..., ALT(..., ...)))
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1326
% \end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1327
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1328
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1329
% \noindent To make it difficult, you do not know how deep such
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1330
% alternatives are nested. So you need something flexible that
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1331
% can take as many alternatives as needed. In Scala one can
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1332
% achieve this by adding a \code{*} to the type of an argument.
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1333
% Consider the code
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1334
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1335
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1336
% \begin{lstlisting}[language=Scala]
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1337
% def Alts(rs: List[Rexp]) : Rexp = rs match {
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1338
%   case Nil => NULL
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1339
%   case r::Nil => r
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1340
%   case r::rs => ALT(r, Alts(rs))
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1341
% }
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1342
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1343
% def ALTS(rs: Rexp*) = Alts(rs.toList)
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1344
% \end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1345
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1346
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1347
% \noindent The function in Lines 1 to 5 takes a list of regular
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1348
% expressions and converts it into an appropriate alternative
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1349
% regular expression. In Line 7 there is a wrapper for this
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1350
% function which uses the feature of varying argument lists. The
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1351
% effect of this code  is that I can write the regular
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1352
% expression for keywords as
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1353
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1354
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1355
% \begin{lstlisting}[numbers=none]
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1356
% ALTS("for", "def", "yield", "implicit", "if", "match", "case")
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1357
% \end{lstlisting}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1358
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1359
143
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1360
% \noindent Again I leave it to you to find out how much this
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1361
% simplifies the regular expression in comparison with if I had
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1362
% to write this by hand using only the ``plain'' regular
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1363
% expressions from the inductive datatype.
6f7ec7c531e9 updated
Christian Urban <urbanc@in.tum.de>
parents: 125
diff changeset
  1364
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1365
%\bigskip\noindent
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1366
%\textit{More TBD.}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1367
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1368
%\subsection*{Coursework}
181
5b889c263b6b updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
  1369
195
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
  1370
4bacbe753e66 updated
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
  1371
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1372
\subsection*{More Info}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1373
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1374
There is much more to Scala than I can possibly describe in
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1375
this document and teach in the lectures. Fortunately there are a 
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1376
number of free books
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1377
about Scala and of course lots of help online. For example
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1378
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1379
\begin{itemize}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1380
\item \url{http://www.scala-lang.org/docu/files/ScalaByExample.pdf}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1381
\item \url{http://www.scala-lang.org/docu/files/ScalaTutorial.pdf}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1382
\item \url{https://www.youtube.com/user/ShadowofCatron}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1383
\item \url{http://docs.scala-lang.org/tutorials}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1384
\item \url{https://www.scala-exercises.org}
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  1385
\item \url{https://twitter.github.io/scala_school}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1386
\end{itemize}
188
e075b5015e89 updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  1387
 
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1388
\noindent There is also an online course at Coursera on Functional
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1389
Programming Principles in Scala by Martin Odersky, the main
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1390
developer of the Scala language. And a document that explains
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1391
Scala for Java programmers
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1392
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1393
\begin{itemize}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1394
\item \small\url{http://docs.scala-lang.org/tutorials/scala-for-java-programmers.html}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1395
\end{itemize}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1396
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1397
While I am quite enthusiastic about Scala, I am also happy to
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1398
admit that it has more than its fair share of faults. The
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1399
problem seen earlier of having to give an explicit type to
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1400
\code{toSet}, but not \code{toList} is one of them. There are
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1401
also many ``deep'' ideas about types in Scala, which even to
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1402
me as seasoned functional programmer are puzzling. Whilst
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1403
implicits are great, they can also be a source of great
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1404
headaches, for example consider the code:
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1405
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1406
\begin{lstlisting}[numbers=none]
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1407
scala>  List (1, 2, 3) contains "your mom"
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1408
res1: Boolean = false
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1409
\end{lstlisting}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1410
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1411
\noindent Rather than returning \code{false}, this code should
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1412
throw a typing-error. There are also many limitations Scala
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1413
inherited from the JVM that can be really annoying. For
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1414
example a fixed stack size. One can work around this
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1415
particular limitation, but why does one have to?
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1416
More such `puzzles' can be found at
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1417
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1418
\begin{center}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1419
  \url{http://scalapuzzlers.com} and
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1420
  \url{http://latkin.org/blog/2017/05/02/when-the-scala-compiler-doesnt-help/}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1421
\end{center}
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1422
     
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1423
Even if Scala has been a success in several high-profile companies,
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1424
there is also a company (Yammer) that first used Scala in their
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1425
production code, but then moved away from it. Allegedly they did not
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1426
like the steep learning curve of Scala and also that new versions of
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1427
Scala often introduced incompatibilities in old code. Also the Java
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1428
language is lately developing at lightening speed (in comparison to the past) 
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1429
taking on many
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1430
features of Scala and other languages, and it seems even it introduces
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1431
new features on its own.
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1432
152
16dbc95d7d77 updated
Christian Urban <urbanc@in.tum.de>
parents: 143
diff changeset
  1433
%So all in all, Scala might not be a great teaching language,
16dbc95d7d77 updated
Christian Urban <urbanc@in.tum.de>
parents: 143
diff changeset
  1434
%but I hope this is mitigated by the fact that I never require
16dbc95d7d77 updated
Christian Urban <urbanc@in.tum.de>
parents: 143
diff changeset
  1435
%you to write any Scala code. You only need to be able to read
16dbc95d7d77 updated
Christian Urban <urbanc@in.tum.de>
parents: 143
diff changeset
  1436
%it. In the coursework you can use any programming language you
16dbc95d7d77 updated
Christian Urban <urbanc@in.tum.de>
parents: 143
diff changeset
  1437
%like. If you want to use Scala for this, then be my guest; if
16dbc95d7d77 updated
Christian Urban <urbanc@in.tum.de>
parents: 143
diff changeset
  1438
%you do not want, stick with the language you are most familiar
16dbc95d7d77 updated
Christian Urban <urbanc@in.tum.de>
parents: 143
diff changeset
  1439
%with.
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1440
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1441
191
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1442
\subsection*{Conclusion}
48a02384f3ae updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1443
198
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1444
I hope you liked the short journey through the Scala language---but remember we 
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1445
like you to take on board the functional programming point of view,
198
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1446
rather than just learning another language. There is an interesting
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1447
blog article about Scala by a convert:
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1448
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1449
\begin{center}
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1450
\url{https://www.skedulo.com/tech-blog/technology-scala-programming/}
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1451
\end{center}  
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1452
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1453
\noindent
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1454
He makes pretty much the same arguments about functional programming and
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1455
immutability (one section is teasingly called \textit{``Where Did all
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1456
the Bugs Go?''}). If you happen to moan about all the idiotic features
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1457
of Scala, well, I guess this is part of the package according to this
c2d36d8ee2a7 updated handout
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1458
quote:\bigskip
197
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1459
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1460
%\begin{itemize}
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1461
%\item no exceptions....there two kinds, one ``global'' exceptions, like
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1462
%out of memory (not much can be done about this by the ``individual''
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1463
%programmer); and ``local one'' open a file that might not exists - in
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1464
%the latter you do not want to use exceptions, but Options
Christian Urban <urbanc@in.tum.de>
parents: 195
diff changeset
  1465
%\end{itemize}
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1466
182
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
  1467
\begin{flushright}\it
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
  1468
There are only two kinds of languages: the ones people complain 
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
  1469
about\\ and the ones nobody uses.\smallskip\\
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
  1470
\mbox{}\hfill\small{}---Bjarne Stroustrup (the inventor of C++)
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
  1471
\end{flushright}
6a4d55584f1f updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
  1472
123
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1473
\end{document}
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1474
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1475
%%% Local Variables: 
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1476
%%% mode: latex
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1477
%%% TeX-master: t
006f71e905a1 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1478
%%% End: