package main
import ( "fmt" "io" m "math" "net/http" _ "net/http/pprof" "os" "strconv" )
func main() { fmt.Println("Hello world!")
beyondHello() }
func beyondHello() { var x int x = 3 y := 4 sum, prod := learnMultiple(x, y) fmt.Println("sum:", sum, "prod:", prod) learnTypes() }
func learnMultiple(x, y int) (sum, prod int) { return x + y, x * y }
func learnTypes() { str := "Learn Go!"
s2 := `A "raw" string literal can include line breaks.`
g := 'Σ'
f := 3.14159 c := 3 + 4i
var u uint = 7 var pi float32 = 22. / 7
n := byte('\n')
var a4 [4]int a5 := [...]int{3, 1, 5, 10, 100}
a4_cpy := a4 a4_cpy[0] = 25 fmt.Println(a4_cpy[0] == a4[0])
s3 := []int{4, 5, 9} s4 := make([]int, 4) var d2 [][]float64 bs := []byte("a slice")
s3_cpy := s3 s3_cpy[0] = 0 fmt.Println(s3_cpy[0] == s3[0])
s := []int{1, 2, 3} s = append(s, 4, 5, 6) fmt.Println(s)
s = append(s, []int{7, 8, 9}...) fmt.Println(s)
p, q := learnMemory() fmt.Println(*p, *q)
m := map[string]int{"three": 3, "four": 4} m["one"] = 1 if val, ok := m["one"]; ok { }
_, _, _, _, _, _, _, _, _, _ = str, s2, g, f, u, pi, n, a5, s4, bs file, _ := os.Create("output.txt") fmt.Fprint(file, "这就是你如何写入文件,顺便说一下") file.Close()
fmt.Println(s, c, a4, s3, d2, m)
learnFlowControl() }
func learnNamedReturns(x, y int) (z int) { z = x * y return }
func learnMemory() (p, q *int) { p = new(int) s := make([]int, 20) s[3] = 7 r := -2 return &s[3], &r }
func expensiveComputation() float64 { return m.Exp(10) }
func learnFlowControl() { if true { fmt.Println("我告诉过你") } if false { } else { } x := 42.0 switch x { case 0: case 1, 2: case 42:
case 43: default: }
var data interface{} data = "" switch c := data.(type) { case string: fmt.Println(c, "是一个字符串") case int64: fmt.Printf("%d 是一个 int64\n", c) default: }
for x := 0; x < 3; x++ { fmt.Println("迭代", x) }
for { break continue }
for key, value := range map[string]int{"one": 1, "two": 2, "three": 3} { fmt.Printf("key=%s, value=%d\n", key, value) } for _, name := range []string{"Bob", "Bill", "Joe"} { fmt.Printf("你好,%s\n", name) }
if y := expensiveComputation(); y > x { x = y } xBig := func() bool { return x > 10000 } x = 99999 fmt.Println("xBig:", xBig()) x = 1.3e3 fmt.Println("xBig:", xBig())
fmt.Println("加 + 乘以两个数字:", func(a, b int) int { return (a + b) * 2 }(10, 2))
goto love love:
learnFunctionFactory() learnDefer() learnInterfaces() }
func learnFunctionFactory() { fmt.Println(sentenceFactory("summer")("一个美丽的", "日子!"))
d := sentenceFactory("summer") fmt.Println(d("一个美丽的", "日子!")) fmt.Println(d("一个懒惰的", "下午!")) }
func sentenceFactory(mystring string) func(before, after string) string { return func(before, after string) string { return fmt.Sprintf("%s %s %s", before, mystring, after) } }
func learnDefer() (ok bool) { defer fmt.Println("延迟语句以相反的顺序执行(LIFO)。") defer fmt.Println("\n这一行首先被打印,因为") return true }
type Stringer interface { String() string }
type pair struct { x, y int }
func (p pair) String() string { return fmt.Sprintf("(%d, %d)", p.x, p.y) }
func learnInterfaces() { p := pair{3, 4} fmt.Println(p.String()) var i Stringer i = p fmt.Println(i.String())
fmt.Println(p) fmt.Println(i)
learnVariadicParams("很棒的", "学习", "在这里!") }
func learnVariadicParams(myStrings ...any) { for _, param := range myStrings { fmt.Println("参数:", param) }
fmt.Println("参数:", fmt.Sprintln(myStrings...))
learnErrorHandling() }
func learnErrorHandling() { m := map[int]string{3: "three", 4: "four"} if x, ok := m[1]; !ok { fmt.Println("没有人") } else { fmt.Print(x) } if _, err := strconv.Atoi("非整数"); err != nil { fmt.Println(err) } learnConcurrency() }
func inc(i int, c chan int) { c <- i + 1 }
func learnConcurrency() { c := make(chan int) go inc(0, c) go inc(10, c) go inc(-805, c) fmt.Println(<-c, <-c, <-c)
cs := make(chan string) ccs := make(chan chan string) go func() { c <- 84 }() go func() { cs <- "wordy" }() select { case i := <-c: fmt.Printf("它是一个 %T", i) case <-cs: fmt.Println("它是一个字符串") case <-ccs: fmt.Println("没有发生。") }
learnWebProgramming() }
func learnWebProgramming() { go func() { err := http.ListenAndServe(":8080", pair{}) fmt.Println(err) }()
requestServer() }
func (p pair) ServeHTTP(w http.ResponseWriter, r *http.Request) { w.Write([]byte("你在 Y 分钟内学会了 Go!")) }
func requestServer(){ resp,err := http.Get("http://localhost:8080") fmt.Println(err) defer resp.Body.Close() body,err := io.ReadAll(resp.Body) fmt.Printf("\nWebserver 说: `%s`", string(body)) }
|