Compare commits
2 Commits
bf872f0919
...
master
Author | SHA1 | Date | |
---|---|---|---|
742bbc6e1e | |||
5160e2ae78 |
12
gobyexample/channel-buffering.go
Normal file
12
gobyexample/channel-buffering.go
Normal file
@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
messages := make(chan string, 2)
|
||||
messages <- "buffered"
|
||||
messages <- "channel"
|
||||
|
||||
fmt.Println(<-messages)
|
||||
fmt.Println(<-messages)
|
||||
}
|
20
gobyexample/channel-directions.go
Normal file
20
gobyexample/channel-directions.go
Normal file
@ -0,0 +1,20 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func ping(pings chan<- string, msg string) {
|
||||
pings <- msg
|
||||
}
|
||||
|
||||
func pong(pings <-chan string, pongs chan<- string) {
|
||||
msg := <-pings
|
||||
pongs <- msg
|
||||
}
|
||||
|
||||
func main() {
|
||||
pings := make(chan string, 1)
|
||||
pongs := make(chan string, 1)
|
||||
ping(pings, "passed message")
|
||||
pong(pings, pongs)
|
||||
fmt.Println(<-pongs)
|
||||
}
|
21
gobyexample/channel-synchronization.go
Normal file
21
gobyexample/channel-synchronization.go
Normal file
@ -0,0 +1,21 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
)
|
||||
|
||||
func worker(done chan bool) {
|
||||
fmt.Print("working...")
|
||||
time.Sleep(time.Second)
|
||||
fmt.Println("done")
|
||||
|
||||
done <- true
|
||||
}
|
||||
|
||||
func main() {
|
||||
done := make(chan bool, 1)
|
||||
go worker(done)
|
||||
|
||||
<-done
|
||||
}
|
12
gobyexample/channels.go
Normal file
12
gobyexample/channels.go
Normal file
@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
messages := make(chan string)
|
||||
|
||||
go func() { messages <- "ping" }()
|
||||
|
||||
msg := <-messages
|
||||
fmt.Println(msg)
|
||||
}
|
53
gobyexample/errors.go
Normal file
53
gobyexample/errors.go
Normal file
@ -0,0 +1,53 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func f1(arg int) (int, error) {
|
||||
if arg == 42 {
|
||||
return -1, errors.New("can't work with 42")
|
||||
}
|
||||
return arg + 3, nil
|
||||
}
|
||||
|
||||
type argError struct {
|
||||
arg int
|
||||
prob string
|
||||
}
|
||||
|
||||
func (e *argError) Error() string {
|
||||
return fmt.Sprintf("%d - %s", e.arg, e.prob)
|
||||
}
|
||||
|
||||
func f2(arg int) (int, error) {
|
||||
if arg == 42 {
|
||||
return -1, &argError{arg, "can't work with it"}
|
||||
}
|
||||
return arg + 3, nil
|
||||
}
|
||||
|
||||
func main() {
|
||||
for _, i := range []int{7 ,42} {
|
||||
if r, e := f1(i); e != nil {
|
||||
fmt.Println("f1 failed:", e)
|
||||
} else {
|
||||
fmt.Println("f1 worked:", r)
|
||||
}
|
||||
}
|
||||
|
||||
for _, i := range []int{7, 42} {
|
||||
if r,e := f2(i); e != nil {
|
||||
fmt.Println("f2 failed:", e)
|
||||
} else {
|
||||
fmt.Println("f2 worked:", r)
|
||||
}
|
||||
}
|
||||
|
||||
_, e := f2(42)
|
||||
if ae, ok := e.(*argError); ok {
|
||||
fmt.Println(ae.arg)
|
||||
fmt.Println(ae.prob)
|
||||
}
|
||||
}
|
25
gobyexample/goroutines.go
Normal file
25
gobyexample/goroutines.go
Normal file
@ -0,0 +1,25 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
)
|
||||
|
||||
func f(from string) {
|
||||
for i := 0; i < 3; i++ {
|
||||
fmt.Println(from, ":", i)
|
||||
}
|
||||
}
|
||||
|
||||
func main() {
|
||||
f("direct")
|
||||
|
||||
go f("goroutine")
|
||||
|
||||
go func(msg string) {
|
||||
fmt.Println(msg)
|
||||
}("going")
|
||||
|
||||
time.Sleep(time.Second)
|
||||
fmt.Println("done")
|
||||
}
|
46
gobyexample/interfaces.go
Normal file
46
gobyexample/interfaces.go
Normal file
@ -0,0 +1,46 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"math"
|
||||
)
|
||||
|
||||
type geometry interface {
|
||||
area() float64
|
||||
perim() float64
|
||||
}
|
||||
|
||||
type rect struct {
|
||||
width, height float64
|
||||
}
|
||||
type circle struct {
|
||||
radius float64
|
||||
}
|
||||
|
||||
func (r *rect) area() float64 {
|
||||
return r.width * r.height
|
||||
}
|
||||
func (r *rect) perim() float64 {
|
||||
return 2*r.width + 2*r.height
|
||||
}
|
||||
|
||||
func (c *circle) area() float64 {
|
||||
return math.Pi * c.radius * c.radius
|
||||
}
|
||||
func (c *circle) perim() float64 {
|
||||
return 2 * math.Pi * c.radius
|
||||
}
|
||||
|
||||
func measure(g geometry) {
|
||||
fmt.Println(g)
|
||||
fmt.Println(g.area())
|
||||
fmt.Println(g.perim())
|
||||
}
|
||||
|
||||
func main() {
|
||||
r := &rect{width:3, height:4}
|
||||
c := &circle{radius: 5}
|
||||
|
||||
measure(r)
|
||||
measure(c)
|
||||
}
|
26
gobyexample/methods.go
Normal file
26
gobyexample/methods.go
Normal file
@ -0,0 +1,26 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
type rect struct {
|
||||
width, height int
|
||||
}
|
||||
|
||||
func (r *rect) area() int {
|
||||
return r.width * r.height
|
||||
}
|
||||
|
||||
func (r rect) perim() int {
|
||||
return 2*r.width + 2*r.height
|
||||
}
|
||||
|
||||
func main() {
|
||||
r := rect{width: 10, height: 5}
|
||||
|
||||
fmt.Println("area:", r.area())
|
||||
fmt.Println("perim:", r.perim())
|
||||
|
||||
rp := &r
|
||||
fmt.Println("area:", rp.area())
|
||||
fmt.Println("perim:", rp.perim())
|
||||
}
|
24
gobyexample/pointers.go
Normal file
24
gobyexample/pointers.go
Normal file
@ -0,0 +1,24 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func zeroval(ival int) {
|
||||
ival = 0
|
||||
}
|
||||
|
||||
func zeroptr(iptr *int) {
|
||||
*iptr = 0
|
||||
}
|
||||
|
||||
func main() {
|
||||
i := 1
|
||||
fmt.Println("initial:", i)
|
||||
|
||||
zeroval(i)
|
||||
fmt.Println("zeroval:", i)
|
||||
|
||||
zeroptr(&i)
|
||||
fmt.Println("zeroptr:", i)
|
||||
|
||||
fmt.Println("pointer:", &i)
|
||||
}
|
30
gobyexample/select.go
Normal file
30
gobyexample/select.go
Normal file
@ -0,0 +1,30 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
)
|
||||
|
||||
func main() {
|
||||
c1 := make(chan string)
|
||||
c2 := make(chan string)
|
||||
|
||||
go func() {
|
||||
time.Sleep(1 * time.Second)
|
||||
c1 <- "one"
|
||||
}()
|
||||
|
||||
go func() {
|
||||
time.Sleep(2 * time.Second)
|
||||
c1 <- "two"
|
||||
}()
|
||||
|
||||
for i := 0; i < 2; i++ {
|
||||
select {
|
||||
case msg1 := <-c1:
|
||||
fmt.Println("received", msg1)
|
||||
case msg2 := <-c2:
|
||||
fmt.Println("received", msg2)
|
||||
}
|
||||
}
|
||||
}
|
38
gobyexample/structs.go
Normal file
38
gobyexample/structs.go
Normal file
@ -0,0 +1,38 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
type person struct {
|
||||
name string
|
||||
age int
|
||||
}
|
||||
|
||||
func newPerson(name string) *person {
|
||||
p := person{name:name}
|
||||
p.age = 42
|
||||
return &p
|
||||
}
|
||||
|
||||
|
||||
func main() {
|
||||
|
||||
fmt.Println(person{"Bob", 20})
|
||||
|
||||
fmt.Println(person{name:"Alice", age:30})
|
||||
|
||||
fmt.Println(person{name:"Fred"})
|
||||
|
||||
fmt.Println(&person{name: "Ann", age: 40})
|
||||
|
||||
fmt.Println(newPerson("Jon"))
|
||||
|
||||
s := person{name:"Sean", age: 50}
|
||||
fmt.Println(s.name)
|
||||
|
||||
sp := &s
|
||||
fmt.Println(sp.age)
|
||||
|
||||
sp.age = 51
|
||||
fmt.Println(sp.age)
|
||||
|
||||
}
|
29
gobyexample/waitgroups.go
Normal file
29
gobyexample/waitgroups.go
Normal file
@ -0,0 +1,29 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"sync"
|
||||
"time"
|
||||
)
|
||||
|
||||
func worker(id int) {
|
||||
fmt.Printf("Worker %d starting\n", id)
|
||||
time.Sleep(time.Second)
|
||||
fmt.Printf("Worker %d done\n", id)
|
||||
}
|
||||
|
||||
func main() {
|
||||
var wg sync.WaitGroup
|
||||
|
||||
for i:= 1; i<=5; i++ {
|
||||
wg.Add(1)
|
||||
|
||||
i := i
|
||||
|
||||
go func() {
|
||||
defer wg.Done()
|
||||
worker(i)
|
||||
}()
|
||||
}
|
||||
wg.Wait()
|
||||
}
|
Reference in New Issue
Block a user