forked from miekg/gobook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo-functions.tex
439 lines (397 loc) · 15.3 KB
/
go-functions.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
\epi{"I'm always delighted by the light touch and stillness of
early programming languages. Not much text; a lot gets
done. Old programs read like quiet conversations
between a well-spoken research worker and a well-
studied mechanical colleague, not as a debate with a
compiler. Who'd have guessed sophistication bought
such noise?"}{\textsc{RICHARD P. GABRIEL}}
\noindent{}Functions are the basic building blocks in Go programs; all interesting
stuff happens in them. A function is declared as follows:
\input{fig/function.tex}
\showremarks
Here are a two examples, the left is a function without a return value,
the one on the right is a simple function that returns its input.
\begin{minipage}{.5\textwidth}
\begin{lstlisting}
func subroutine(in int) {
return
}
\end{lstlisting}
\end{minipage}
\begin{minipage}{.5\textwidth}
\begin{lstlisting}
func identity(in int) int {
return in
}
\end{lstlisting}
\end{minipage}
Functions can be declared in any order you wish, the compiler scans the
entire file before execution. So function prototyping is a thing of the
past in Go.
Go disallows nested functions. You can however
work around this by using anonymous functions, see section
"\titleref{sec:functions as values}" on page \pageref{sec:functions as values}
in this chapter.
Recursive functions just work as in other languages:
\begin{lstlisting}[caption=Recursive function]
func rec(i int) {
if i == 10 {
return
}
rec(i+1)
fmt.Printf("%d ", i)
}
\end{lstlisting}
This prints: \texttt{9 8 7 6 5 4 3 2 1 0}.
%%\newpage %% TODO don't want a newpage here actually
\section{Scope}
Variables declared outside any functions are \first{global}{scope!local} in Go, those
defined in functions are \first{local}{scope!local} to those functions. If names overlap --- a
local variable is declared with the same name as a global one --- the
local variable hides the global one when the current function is
executed.
\begin{minipage}{.5\textwidth}
\input{fig/scope1.tex}
\hfill
\vfill
\end{minipage}
\hfill
\begin{minipage}{.5\textwidth}
\input{fig/scope2.tex}
\hfill
\vfill
\end{minipage}
In listing \ref{src:scope1} we introduce a local variable \var{a}
in the function \func{q()}.
This local \var{a} is only visible in \func{q()}. That is
why the code will print: \texttt{656}.
In listing \ref{src:scope2} no new variables are introduced, there
is only a global \var{a}.
Assigning a new value to will be globally visible. This code will
print: \texttt{655}
In the following example we call \func{g()} from \func{f()}:
\lstinputlisting[caption=Scope when calling functions from functions]{src/scope3.go}
The printout will be: \texttt{565}. A \emph{local} variable is \emph{only}
valid when we are executing the function in which it is defined.
%%Finally, one can create a \first{"function literal"}{function literal} in which you essentially
%%define a function inside another
%%function, i.e. a \first{nested function}{nested function}.
%%The following figure should clarify why it prints: \texttt{565757}.
%%\input{fig/scope3.tex}
\section{Multiple return values}
\label{sec:multiple return}
One of Go's unusual features is that functions and methods can return multiple
values (but Python can do this too). This can be used to improve on a couple of
clumsy idioms in C programs:
in-band error returns (such as -1 for \texttt{EOF}) and modifying an argument.
In Go, \lstinline{Write} returns a count and an
error: "Yes, you wrote some bytes but not all of them because you filled the
device". The signature of \lstinline{*File.Write} in package
\package{os} is:
\begin{lstlisting}
func (file *File) Write(b []byte) (n int, err Error)
\end{lstlisting}
and as the documentation says, it returns the number of bytes written and a
non-\lstinline{nil} \var{Error} when \lstinline{n != len(b)}. This is a common
style in Go.
A similar approach obviates the need to pass a pointer to a return value to
simulate a reference parameter. Here's a simple-minded function to grab a
number from a position in a byte array, returning the number and the next
position.
\begin{lstlisting}
func nextInt(b []byte, i int) (int, int) {
x := 0
// Naively assume everything is a number
for ; i < len(b); i++ {
x = x*10 + int(b[i])-'0'
}
return x, i
}
\end{lstlisting}
You could use it to scan the numbers in an input array a like this:
\begin{lstlisting}
a := []byte{'1', '2', '3', '4'}
var x int
for i := 0; i < len(a); { |\coderemark{No \texttt{i++}}|
x, i = nextInt(a, i)
println(x)
}
\end{lstlisting}
Without having tuples as a native type, multiple return values is the next
best thing to have. You can return precisely what you want without
overloading the domain space with special values to signal errors.
\section{Named result parameters}
\label{sec:named result parameters}
The return or result parameters of a Go function can be given names and used
as regular variables, just like the incoming parameters. When named, they are
initialized to the zero values for their types when the function begins; if the
function executes a \key{return} statement with no arguments, the current values of
the result parameters are used as the returned values. Using this
features enables you (again) to do more with less code \footnote{This is
a motto of Go; "Do \emph{more} with \emph{less} code".}.
The names are not mandatory but they can make code shorter and clearer:
\emph{they are documentation}.
If we name the results of \lstinline{nextInt} it becomes obvious which
returned \type{int} is which.
\begin{lstlisting}
func nextInt(b []byte, pos int) (value, nextPos int) { /* ... */ }
\end{lstlisting}
Because named results are initialized and tied to an unadorned
\key{return},
they can simplify as well as clarify. Here's a version of
\lstinline{ioutil.ReadFull} that uses them well:
\begin{lstlisting}
func ReadFull(r Reader, buf []byte) (n int, err os.Error) {
for len(buf) > 0 && err == nil {
var nr int
nr, err = r.Read(buf)
n += nr
buf = buf[nr:len(buf)]
}
return
}
\end{lstlisting}
In the following example we declare a simple function which calculates
\gomarginpar{Some text in this section comes from \cite{go_intro}.} % layout
the factorial value of a value \var{x}.
\begin{lstlisting}
func Factorial(x int) int { |\coderemark{\texttt{func Factorial(x int) (int)} is also OK}|
if x == 0 {
return 1
} else {
return x * Factorial(x - 1)
}
}
\end{lstlisting}
So you could also write factorial as:
\begin{lstlisting}
func Factorial(x int) (result int) {
if x == 0 {
result = 1
} else {
result = x * Factorial(x - 1)
}
return
}
\end{lstlisting}
When we use named result values, the code is shorter and
easier to read.
You can also write a function with multiple return values:
\begin{lstlisting}
func fib(n) (val, pos int) { |\coderemark{Both ints}|
if n == 0 {
val = 1
pos = 0
} else if n == 1 {
val = 1
pos = 1
} else {
v1, _ := fib(n-1)
v2, _ := fib(n-2)
val = v1 + v2
pos = n
}
return
}
\end{lstlisting}
\section{Deferred code}
\label{sec:deferred code}
Suppose you have a function in which you open a file and perform various
writes and reads on it. In such a function there are often spots where
you want to return early. If you do that, you will need to close the file
descriptor you are working on. This often leads to the following code:
\begin{lstlisting}[caption=Without defer]
func ReadWrite() bool {
file.Open("file")
// Do your thing
if failureX {
file.Close() |\coderemark{}|
return false
}
if failureY {
file.Close() |\coderemark{}|
return false
}
file.Close() |\coderemark{}|
return true
}
\end{lstlisting}
Here a lot of code is repeated. To overcome this Go has the
\first{\key{defer}}{keyword!defer} statement. After
\key{defer} you specify a function which is called just \emph{before} a
return from the function is executed.
The code above could be rewritten as follows. This makes the
function more readable, shorter and puts the \func{Close} right next
to the \func{Open}.
\begin{lstlisting}[caption=With defer]
func ReadWrite() bool {
file.Open("file")
defer file.Close() |\coderemark{\func{file.Close()} is added to the defer list}|
// Do your thing
if failureX {
return false |\coderemark{\func{Close()} is now done automatically}|
}
if failureY {
return false |\coderemark{And here too}|
}
return true
}
\end{lstlisting}
You can put multiple functions on the "deferred list"\index{deferred list}, like this
example from \cite{effective_go}:
\begin{lstlisting}
for i := 0; i < 5; i++ {
defer fmt.Printf("%d ", i)
}
\end{lstlisting}
Deferred functions are executed in LIFO order, so the above code
prints: \lstinline{4 3 2 1 0}.
With \func{defer} you can even change return values, provided that
you are using named result parameters and a function
literal\index{function!literal}\footnote{A function literal
is sometimes called a \index{closure} closure.}, i.e:
\begin{lstlisting}[caption=Function literal]
defer func() {
/* ... */
}() |\coderemark{() is needed here}|
\end{lstlisting}
Or this example which makes it easier to understand why and where
you need the braces:
\begin{lstlisting}[caption=Function literal with parameters]
defer func(x int) {
/* ... */
}(5) |\coderemark{Give the input variable \var{x} the value 5}|
\end{lstlisting}
In that (unnamed) function you can access any named return
parameter:
\begin{lstlisting}[caption=Access return values within defer]
func f() (ret int) { |\coderemark{\var{ret} is initialized with zero}|
defer func() {
ret++ |\coderemark{Increment \var{ret} with 1}|
}()
return 0 |\coderemark{1 \emph{not} 0 will be returned!}|
}
\end{lstlisting}
\section{Variadic parameters}
Functions that take variadic parameters are functions that have a
variable number of parameters. To do this, you first
need to declare your function to take variadic arguments:
\begin{lstlisting}
func myfunc(arg ...int) {}
\end{lstlisting}
The \lstinline{arg ... int} instructs Go to see this as a function that
takes a variable number of arguments. Note that these arguments all
have the type \type{int}. Inside your function's body the variable
\var{arg} is a slice of ints:
\begin{lstlisting}
for _, n := range arg {
fmt.Printf("And the number is: %d\n", n)
}
\end{lstlisting}
If you don't specify the type of the variadic argument it defaults to the
empty interface \var{interface\{\}} (see chapter
\ref{chap:interfaces}").
Suppose we have another variadic function called \func{myfunc2}, the
following example shows how to pass the variadic arguments to it:
\begin{lstlisting}
func myfunc(arg ...int) {
myfunc2(arg...) |\coderemark{Pass it as-is}|
myfunc2(arg[:2]...) |\coderemark{Slice it}|
}
\end{lstlisting}
\section{Functions as values}
\label{sec:functions as values}
\index{function!as values}
\index{function!literals}
As with almost everything in Go, functions are also \emph{just} values.
They can be assigned to variables as follows:
\lstinputlisting[label=src:anonfunc,caption=Anonymous function,linerange={3,}]{src/anon-func.go}
If we use \lstinline{fmt.Printf("%T\n", a)} to print the type of
\var{a}, it prints \func{func()}.
Functions--as--values may also be used in other places, like in maps.
Here we convert from integers to functions:
\begin{lstlisting}[caption=Functions as values in maps]
var xs = map[int]func() int{
1: func() int { return 10 },
2: func() int { return 20 },
3: func() int { return 30 }, |\coderemark{Mandatory ,}|
/* ... */
}
\end{lstlisting}
Or you can write a function that takes a function as its parameter, for
example a \func{Map} function that works on \type{int} slices. This is
left as an exercise for the reader, see exercise Q\ref{ex:map function}
on page \pageref{ex:map function}.
\section{Callbacks}
\label{sec:callbacks}
With functions as values they are easy to pass to functions, from where
they can be used as callbacks. First define a function that
does "something" with an integer value:
\begin{lstlisting}
func printit(x int) { |\coderemark{Function returns nothing}|
fmt.Print("%v\n", x) |\coderemark{Just print it}|
}
\end{lstlisting}
The signature of this function is: \lstinline{func printit(int)}, or
without the function name: \mbox{\lstinline{func(int)}}. To create a new function
that uses this one as a callback we need to use this signature:
\begin{lstlisting}
func callback(y int, f func(int)) { |\coderemark{\func{f} will hold the function}|
f(y) |\coderemark{Call the callback \func{f} with \var{y}}|
}
\end{lstlisting}
\section{Panic and recovering}
\label{sec:panic}
Go does not have a exception mechanism, like that in Java for instance: you can not throw exceptions.
Instead it using a panic-and-recover mechanism. It is worth remembering that you should use this as
a last resort, your code will not look, or be, better if it is littered with panics. It's a powerful tool:
use it wisely. So, how do you use it?
The following description was taken from \cite{go_blog_panic}:
\begin{description}
\item[Panic]{is a built-in function that stops the ordinary flow of control and begins panicking. When the function
\func{F} calls \key{panic},
execution of \func{F} stops, any deferred functions in \func{F} are executed normally, and
then \func{F} returns to its caller. To the caller, \func{F} then
behaves like a call to \key{panic}. The process continues up the stack until all functions in the current
goroutine have returned, at which point the program crashes.
Panics can be initiated by invoking \func{panic} directly. They can also be caused by \emph{runtime errors}, such
as out-of-bounds array accesses.}
\item[Recover]{is a built-in function that regains control of a panicking goroutine. Recover is \emph{only} useful inside
\emph{deferred} functions.
During normal execution, a call to \func{recover} will return \type{nil} and have no other effect.
If the current goroutine is panicking, a call
to \func{recover} will capture the value given to \func{panic} and resume normal execution.}
\end{description}
This function checks if the function it gets as argument will panic when it is
executed\footnote{Copied from a presentation of Eleanor McHugh.}:
\begin{lstlisting}
func throwsPanic(f func()) (b bool) { |\longremark{We define a new function \func{throwsPanic} that takes %
a fuction as an argument, see "\titleref{sec:functions as values}". It returns true when this function %
will panic, otherwise false;}|
defer func() { |\longremark{We define a \func{defer} function that utilizes \func{recover}, \emph{if} the %
current goroutine panics, this defer function will notice that. If \func{recover()} returns non-\var{nil} we set \var{b} %
to true;}|
if x := recover(); x != nil {
b = true
}
}()
f() |\longremark{Execute the function we received as the argument;}|
return |\longremark{Return the value of \var{b}. Because \var{b} is a named return parameter (page %
\pageref{sec:named result parameters}), we don't specify \var{b}.}|
}
\end{lstlisting}
\showremarks
\section{Exercises}
\input{ex-functions/ex-average.tex}
\input{ex-functions/ex-order.tex}
\input{ex-functions/ex-scope.tex}
\input{ex-functions/ex-stack.tex}
\input{ex-functions/ex-vararg.tex}
\input{ex-functions/ex-fib.tex}
\input{ex-functions/ex-map.tex}
\input{ex-functions/ex-minmax.tex}
\input{ex-functions/ex-bubblesort.tex}
\input{ex-functions/ex-funcfunc.tex}
\cleardoublepage
\section{Answers}
\shipoutAnswer