Go语言基本语法
Go语言介绍(特点列举)
高性能、高并发
语法简单、学习曲线平缓
丰富的标准库
完善的工具链
静态链接
快速编译
跨平台
垃圾回收
开发环境
安装Golang
Golang官网
https://go.dev/
https://studygolang.com/dl
https://goproxy.cn/
配置集成开发环境
你可以使用vscode(下插件)或goland进行配置,其中goland是付费软件,如果想永久使用,那就从网上找个破解版吧
基础语法(速通)
相信你已经有了其他编程语言的基础(没有的话推荐先从C语言开始学习),所以后面将会只用少量代码来快速诠释语法
Hello World
1 2 3 4 5 6 7 8 9 package main import ( "fmt" ) func main () { fmt.Println("hello world" ) }
输出
变量
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 package main import ( "fmt" "math" ) func main () { var a = "initial" var b , c = 1 , 2 var d = true var e float64 f := float32 (e) g := a + "foo" fmt.Println (a , b , c, d, e, f) fmt.Println (g) const s string = "constant" const h = 500000000 const i = 3 e20 / h fmt.Println (s, h, i , math.Sin (h), math.Sin (i)) }
输出
1 2 3 initial 1 2 true 0 0 initialfoo constant 500000000 6 e+11 -0 .28470407323754404 0 .7591864109375384
if else
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 package mainimport "fmt" func main(){ if 7 %2 == 0 { fmt.Println ("7 is even" ) }else { fmt.Println ("7 is odd" ) } if 8 %4 == 0 {fmt.Println ("8 is divisible by 4" ) } if num := 9 ;num < 0 { fmt.Println (num,"is negative" ) }else if num < 10 { fmt.Println (num,"has 1 digit" ) }else { fmt.Println (num,"has multiple digits" ) } }
输出
1 2 3 7 is odd8 is divisible by 4 9 has 1 digit
循环
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 package mainimport "fmt" func main () { i := 1 for { fmt.Println("loop" ) break } for j := 7 ; j < 9 ; j++ { fmt.Println(j) } for n := 0 ; n < 5 ; n++ { if n%2 == 0 { continue } fmt.Println(n) } for i <= 3 { fmt.Println(i) i = i + 1 } }
输出
switch
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 import ( "fmt" "time" ) func main() { a := 2 switch a { case 1 : fmt.Println ("one" ) case 2 : fmt.Println ("two" ) case 3 , 4 : fmt.Println ("three or four" ) default : fmt.Println ("other" ) } t := time.Now() switch { case t.Hour() < 12 : fmt.Println ("it's before noon" ) default : fmt.Println ("it's after noon" ) } }
输出
数组
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 package mainimport "fmt" func main () { var a [5 ]int a[4 ] = 100 fmt.Println(a[4 ], len (a)) b := [5 ]int {1 , 2 , 3 , 4 , 5 } fmt.Println(b) var twoD [2 ][3 ]int for i := 0 ; i < 2 ; i++ { for j := 0 ; j < 3 ; j++ { twoD[i][j] = i + j } } fmt.Println("2d:" , twoD) }
输出
1 2 3 100 5 [1 2 3 4 5 ] 2 d: [[0 1 2] [1 2 3]]
切片(可以更改长度的数组)
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 package main import "fmt" func main () { s := make ([] string, 3 ) s[0] = "a" s[1] = "b" s[2] = "c" fmt.Println ("get:" , s[2] ) fmt.Println ("len:" , len (s)) s = append (s, "d" ) s = append (s, "e" , "f" ) fmt.Println (s) c := make ([] string, len (s)) copy (c, s) fmt.Println (c) fmt.Println (s[2:5] ) fmt.Println (s[:5] ) fmt.Println (s[2:] ) good := [] string{"g" , "o" , "o" , "d" } fmt.Println (good) }
输出
1 2 3 4 5 6 7 8 get : clen : 3 [a b c d e f] [a b c d e f] [c d e] [a b c d e] [c d e f] [g o o d]
map(相当于哈希或字典)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 package mainimport "fmt" func main () { m := make (map [string ]int ) m["one" ] = 1 m["two" ] = 2 fmt.Println(m) fmt.Println(len (m)) fmt.Println(m["one" ]) fmt.Println(m["unknow" ]) r, ok := m["unknow" ] fmt.Println(r, ok) delete (m, "one" ) m2 := map [string ]int {"one" : 1 , "two" : 2 } var m3 = map [string ]int {"one" : 1 , "two" : 2 } fmt.Println(m2, m3) }
输出
1 2 3 4 5 6 map[one :1 two :2 ] 2 1 0 0 false map[one :1 two :2 ] map[one :1 two :2 ]
range
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 package mainimport "fmt" func main () { nums := []int {2 , 3 , 4 } sum := 0 for i, num := range nums { sum += num if num == 2 { fmt.Println("index:" , i, "num" , num) } } fmt.Println(sum) m := map [string ]string {"a" : "A" , "b" : "B" } for k, v := range m { fmt.Println(k, v) } for k := range m { fmt.Println("key" , k) } }
输出
1 2 3 4 5 6 index: 0 num 2 9 a Ab B key a key b
函数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 package mainimport "fmt" func add (a int , b int ) int { return a + b } func add2 (a, b int ) int { return a + b } func exists (m map [string ]string , k string ) (v string , ok bool ) { v, ok = m[k] return v, ok } func main () { res := add(1 , 2 ) fmt.Println(res) v, ok := exists(map [string ]string {"a" : "A" }, "a" ) fmt.Println(v, ok) }
输出
指针
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 package mainimport "fmt" func add2 (n int ) { n += 2 } func add2ptr (n *int ) { *n += 2 } func main () { n := 5 add2(n) fmt.Println(n) add2ptr(&n) fmt.Println(n) }
输出