2013-08-13 21:52:13 +04:00
|
|
|
---
|
|
|
|
name: Go
|
|
|
|
category: language
|
|
|
|
language: Go
|
|
|
|
filename: learngo.go
|
|
|
|
contributors:
|
|
|
|
- ["Sonia Keys", "https://github.com/soniakeys"]
|
|
|
|
---
|
|
|
|
|
|
|
|
Go was created out of the need to get work done. It's not the latest trend
|
|
|
|
in computer science, but it is the newest fastest way to solve real-world
|
|
|
|
problems.
|
|
|
|
|
|
|
|
It has familiar concepts of imperative languages with static typing.
|
|
|
|
It's fast to compile and fast to execute, it adds easy-to-understand
|
|
|
|
concurrency to leverage today's multi-core CPUs, and has features to
|
|
|
|
help with large-scale programming.
|
|
|
|
|
|
|
|
Go comes with a great standard library and an enthusiastic community.
|
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
```go
|
2013-08-13 21:52:13 +04:00
|
|
|
// Single line comment
|
|
|
|
/* Multi-
|
|
|
|
line comment */
|
|
|
|
|
|
|
|
// A package clause starts every source file.
|
|
|
|
// Main is a special name declaring an executable rather than a library.
|
|
|
|
package main
|
|
|
|
|
2013-08-14 01:12:54 +04:00
|
|
|
// Import declaration declares library packages referenced in this file.
|
2013-08-13 21:52:13 +04:00
|
|
|
import (
|
2013-08-14 06:59:19 +04:00
|
|
|
"fmt" // A package in the Go standard library
|
|
|
|
"net/http" // Yes, a web server!
|
|
|
|
"strconv" // String conversions
|
2013-08-13 21:52:13 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
// A function definition. Main is special. It is the entry point for the
|
|
|
|
// executable program. Love it or hate it, Go uses brace brackets.
|
|
|
|
func main() {
|
2013-08-14 06:59:19 +04:00
|
|
|
// Println outputs a line to stdout.
|
|
|
|
// Qualify it with the package name, fmt.
|
|
|
|
fmt.Println("Hello world!")
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
// Call another function within this package.
|
|
|
|
beyondHello()
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
2013-08-14 01:12:54 +04:00
|
|
|
// Functions have parameters in parentheses.
|
2013-08-13 21:52:13 +04:00
|
|
|
// If there are no parameters, empty parens are still required.
|
|
|
|
func beyondHello() {
|
2013-08-14 06:59:19 +04:00
|
|
|
var x int // Variable declaration. Variables must be declared before use.
|
|
|
|
x = 3 // Variable assignment.
|
|
|
|
// "Short" declarations use := to infer the type, declare, and assign.
|
|
|
|
y := 4
|
|
|
|
sum, prod := learnMultiple(x, y) // function returns two values
|
|
|
|
fmt.Println("sum:", sum, "prod:", prod) // simple output
|
|
|
|
learnTypes() // < y minutes, learn more!
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Functions can have parameters and (multiple!) return values.
|
|
|
|
func learnMultiple(x, y int) (sum, prod int) {
|
2013-08-14 06:59:19 +04:00
|
|
|
return x + y, x * y // return two values
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Some built-in types and literals.
|
|
|
|
func learnTypes() {
|
2013-08-14 06:59:19 +04:00
|
|
|
// Short declaration usually gives you what you want.
|
|
|
|
s := "Learn Go!" // string type
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
s2 := `A "raw" string literal
|
2013-08-13 21:52:13 +04:00
|
|
|
can include line breaks.` // same string type
|
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
// non-ASCII literal. Go source is UTF-8.
|
|
|
|
g := 'Σ' // rune type, an alias for uint32, holds a UTF-8 code point
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
f := 3.14195 // float64, an IEEE-754 64-bit floating point number
|
|
|
|
c := 3 + 4i // complex128, represented internally with two float64s
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
// Var syntax with an initializers.
|
|
|
|
var u uint = 7 // unsigned, but implementation dependent size as with int
|
|
|
|
var pi float32 = 22. / 7
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
// Conversion syntax with a short declaration.
|
|
|
|
n := byte('\n') // byte is an alias for uint8
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
// Arrays have size fixed at compile time.
|
|
|
|
var a4 [4]int // an array of 4 ints, initialized to all 0
|
|
|
|
a3 := [...]int{3, 1, 5} // an array of 3 ints, initialized as shown
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
// Slices have dynamic size. Arrays and slices each have advantages
|
|
|
|
// but use cases for slices are much more common.
|
|
|
|
s3 := []int{4, 5, 9} // compare to a3. no ellipsis here
|
|
|
|
s4 := make([]int, 4) // allocates slice of 4 ints, initialized to all 0
|
|
|
|
var d2 [][]float64 // declaration only, nothing allocated here
|
|
|
|
bs := []byte("a slice") // type conversion syntax
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
p, q := learnMemory() // declares p, q to be type pointer to int.
|
|
|
|
fmt.Println(*p, *q) // * follows a pointer. This prints two ints.
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
// Maps are a dynamically growable associative array type, like the
|
|
|
|
// hash or dictionary types of some other languages.
|
|
|
|
m := map[string]int{"three": 3, "four": 4}
|
|
|
|
m["one"] = 1
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
// Unused variables are an error in Go.
|
|
|
|
// The underbar lets you "use" a variable but discard its value.
|
|
|
|
_, _, _, _, _, _, _, _, _ = s2, g, f, u, pi, n, a3, s4, bs
|
|
|
|
// Output of course counts as using a variable.
|
|
|
|
fmt.Println(s, c, a4, s3, d2, m)
|
2013-08-13 21:52:13 +04:00
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
learnFlowControl() // back in the flow
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Go is fully garbage collected. It has pointers but no pointer arithmetic.
|
|
|
|
// You can make a mistake with a nil pointer, but not by incrementing a pointer.
|
|
|
|
func learnMemory() (p, q *int) {
|
2013-08-14 06:59:19 +04:00
|
|
|
// Named return values p and q have type pointer to int.
|
|
|
|
p = new(int) // built-in function new allocates memory.
|
|
|
|
// The allocated int is initialized to 0, p is no longer nil.
|
|
|
|
s := make([]int, 20) // allocate 20 ints as a single block of memory
|
|
|
|
s[3] = 7 // assign one of them
|
|
|
|
r := -2 // declare another local variable
|
|
|
|
return &s[3], &r // & takes the address of an object.
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func expensiveComputation() int {
|
2013-08-14 06:59:19 +04:00
|
|
|
return 1e6
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func learnFlowControl() {
|
2013-08-14 06:59:19 +04:00
|
|
|
// If statements require brace brackets, and do not require parens.
|
|
|
|
if true {
|
|
|
|
fmt.Println("told ya")
|
|
|
|
}
|
|
|
|
// Formatting is standardized by the command line command "go fmt."
|
|
|
|
if false {
|
|
|
|
// pout
|
|
|
|
} else {
|
|
|
|
// gloat
|
|
|
|
}
|
|
|
|
// Use switch in preference to chained if statements.
|
|
|
|
x := 1
|
|
|
|
switch x {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
// cases don't "fall through"
|
|
|
|
case 2:
|
|
|
|
// unreached
|
|
|
|
}
|
|
|
|
// Like if, for doesn't use parens either.
|
|
|
|
for x := 0; x < 3; x++ { // ++ is a statement
|
|
|
|
fmt.Println("iteration", x)
|
|
|
|
}
|
|
|
|
// x == 1 here.
|
|
|
|
|
|
|
|
// For is the only loop statement in Go, but it has alternate forms.
|
|
|
|
for { // infinite loop
|
|
|
|
break // just kidding
|
|
|
|
continue // unreached
|
|
|
|
}
|
|
|
|
// As with for, := in an if statement means to declare and assign y first,
|
|
|
|
// then test y > x.
|
|
|
|
if y := expensiveComputation(); y > x {
|
|
|
|
x = y
|
|
|
|
}
|
|
|
|
// Function literals are closures.
|
|
|
|
xBig := func() bool {
|
|
|
|
return x > 100 // references x declared above switch statement.
|
|
|
|
}
|
|
|
|
fmt.Println("xBig:", xBig()) // true (we last assigned 1e6 to x)
|
|
|
|
x /= 1e5 // this makes it == 10
|
|
|
|
fmt.Println("xBig:", xBig()) // false now
|
|
|
|
|
|
|
|
// When you need it, you'll love it.
|
|
|
|
goto love
|
2013-08-13 21:52:13 +04:00
|
|
|
love:
|
|
|
|
|
2013-08-14 06:59:19 +04:00
|
|
|
learnInterfaces() // Good stuff coming up!
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
2013-08-14 01:12:54 +04:00
|
|
|
// Define Stringer as an interface type with one method, String.
|
2013-08-13 21:52:13 +04:00
|
|
|
type Stringer interface {
|
2013-08-14 06:59:19 +04:00
|
|
|
String() string
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
2013-08-14 01:12:54 +04:00
|
|
|
// Define pair as a struct with two fields, ints named x and y.
|
2013-08-13 21:52:13 +04:00
|
|
|
type pair struct {
|
2013-08-14 06:59:19 +04:00
|
|
|
x, y int
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
2013-08-14 01:12:54 +04:00
|
|
|
// Define a method on type pair. Pair now implements Stringer.
|
|
|
|
func (p pair) String() string { // p is called the "receiver"
|
2013-08-14 06:59:19 +04:00
|
|
|
// Sprintf is another public function in package fmt.
|
|
|
|
// Dot syntax references fields of p.
|
|
|
|
return fmt.Sprintf("(%d, %d)", p.x, p.y)
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func learnInterfaces() {
|
2013-08-14 06:59:19 +04:00
|
|
|
// Brace syntax is a "struct literal." It evaluates to an initialized
|
|
|
|
// struct. The := syntax declares and initializes p to this struct.
|
|
|
|
p := pair{3, 4}
|
|
|
|
fmt.Println(p.String()) // call String method of p, of type pair.
|
|
|
|
var i Stringer // declare i of interface type Stringer.
|
|
|
|
i = p // valid because pair implements Stringer
|
|
|
|
// Call String method of i, of type Stringer. Output same as above.
|
|
|
|
fmt.Println(i.String())
|
|
|
|
|
|
|
|
// Functions in the fmt package call the String method to ask an object
|
|
|
|
// for a printable representation of itself.
|
|
|
|
fmt.Println(p) // output same as above. Println calls String method.
|
|
|
|
fmt.Println(i) // output same as above
|
|
|
|
|
|
|
|
learnErrorHandling()
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func learnErrorHandling() {
|
2013-08-14 06:59:19 +04:00
|
|
|
// ", ok" idiom used to tell if something worked or not.
|
|
|
|
m := map[int]string{3: "three", 4: "four"}
|
|
|
|
if x, ok := m[1]; !ok { // ok will be false because 1 is not in the map.
|
|
|
|
fmt.Println("no one there")
|
|
|
|
} else {
|
|
|
|
fmt.Print(x) // x would be the value, if it were in the map.
|
|
|
|
}
|
|
|
|
// An error value communicates not just "ok" but more about the problem.
|
|
|
|
if _, err := strconv.Atoi("non-int"); err != nil { // _ discards value
|
|
|
|
// prints "strconv.ParseInt: parsing "non-int": invalid syntax"
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
|
|
|
// We'll revisit interfaces a little later. Meanwhile,
|
|
|
|
learnConcurrency()
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
2013-08-14 01:12:54 +04:00
|
|
|
// c is a channel, a concurrency-safe communication object.
|
2013-08-13 21:52:13 +04:00
|
|
|
func inc(i int, c chan int) {
|
2013-08-14 06:59:19 +04:00
|
|
|
c <- i + 1 // <- is the "send" operator when a channel appears on the left.
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// We'll use inc to increment some numbers concurrently.
|
|
|
|
func learnConcurrency() {
|
2013-08-14 06:59:19 +04:00
|
|
|
// Same make function used earlier to make a slice. Make allocates and
|
|
|
|
// initializes slices, maps, and channels.
|
|
|
|
c := make(chan int)
|
|
|
|
// Start three concurrent goroutines. Numbers will be incremented
|
|
|
|
// concurrently, perhaps in parallel if the machine is capable and
|
|
|
|
// properly configured. All three send to the same channel.
|
|
|
|
go inc(0, c) // go is a statement that starts a new goroutine.
|
|
|
|
go inc(10, c)
|
|
|
|
go inc(-805, c)
|
|
|
|
// Read three results from the channel and print them out.
|
|
|
|
// There is no telling in what order the results will arrive!
|
|
|
|
fmt.Println(<-c, <-c, <-c) // channel on right, <- is "receive" operator.
|
|
|
|
|
|
|
|
cs := make(chan string) // another channel, this one handles strings.
|
2013-09-04 13:30:50 +04:00
|
|
|
cc := make(chan chan string) // a channel of string channels.
|
2013-08-14 06:59:19 +04:00
|
|
|
go func() { c <- 84 }() // start a new goroutine just to send a value
|
|
|
|
go func() { cs <- "wordy" }() // again, for cs this time
|
|
|
|
// Select has syntax like a switch statement but each case involves
|
|
|
|
// a channel operation. It selects a case at random out of the cases
|
|
|
|
// that are ready to communicate.
|
|
|
|
select {
|
|
|
|
case i := <-c: // the value received can be assigned to a variable
|
|
|
|
fmt.Println("it's a", i)
|
|
|
|
case <-cs: // or the value received can be discarded
|
|
|
|
fmt.Println("it's a string")
|
|
|
|
case <-cc: // empty channel, not ready for communication.
|
|
|
|
fmt.Println("didn't happen.")
|
|
|
|
}
|
|
|
|
// At this point a value was taken from either c or cs. One of the two
|
|
|
|
// goroutines started above has completed, the other will remain blocked.
|
|
|
|
|
|
|
|
learnWebProgramming() // Go does it. You want to do it too.
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
2013-08-14 01:12:54 +04:00
|
|
|
// A single function from package http starts a web server.
|
2013-08-13 21:52:13 +04:00
|
|
|
func learnWebProgramming() {
|
2013-08-14 06:59:19 +04:00
|
|
|
// ListenAndServe first parameter is TCP address to listen at.
|
|
|
|
// Second parameter is an interface, specifically http.Handler.
|
|
|
|
err := http.ListenAndServe(":8080", pair{})
|
|
|
|
fmt.Println(err) // don't ignore errors
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
|
2013-08-14 01:12:54 +04:00
|
|
|
// Make pair an http.Handler by implementing its only method, ServeHTTP.
|
2013-08-13 21:52:13 +04:00
|
|
|
func (p pair) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
2013-08-14 06:59:19 +04:00
|
|
|
// Serve data with a method of http.ResponseWriter
|
|
|
|
w.Write([]byte("You learned Go in Y minutes!"))
|
2013-08-13 21:52:13 +04:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Further Reading
|
|
|
|
|
|
|
|
The root of all things Go is the [official Go web site](http://golang.org/).
|
|
|
|
There you can follow the tutorial, play interactively, and read lots.
|
|
|
|
|
|
|
|
The language definition itself is highly recommended. It's easy to read
|
|
|
|
and amazingly short (as language definitions go these days.)
|
|
|
|
|
|
|
|
On the reading list for students of Go is the source code to the standard
|
|
|
|
library. Comprehensively documented, it demonstrates the best of readable
|
|
|
|
and understandable Go, Go style, and Go idioms. Click on a function name
|
|
|
|
in the documentation and the source code comes up!
|
|
|
|
|