diff --git a/_posts/2024-02-27-go.md b/_posts/2024-02-27-go.md index ecca49211..cd8e76ee7 100644 --- a/_posts/2024-02-27-go.md +++ b/_posts/2024-02-27-go.md @@ -7,8 +7,32 @@ last_modified_at: pin: false --- -## 基本语法 +# 基本语法 + +变量初始化: ```go +var s string = "string" +var s = "string" s := "string" -``` \ No newline at end of file +``` + +变量自增:只有后缀自增或自减,并且必须单独一行。 + +条件判断语句中的初始变量可以在布尔表达式里,并且不能使用0/1作为判断条件 +```go +if cond := true; cond { + fmt.Println() +} +``` + +# 知识点 + +## 数组和切片 + +- 数组在内存中是一段连续的内存空间,元素的类型和长度都是固定的; +- 切片在内存中由一个指向底层数组的指针、长度和容量组成的,长度表示当前包含的元素个数,容量表示切片可以拓展的最大元素个数。切片 `s[x: y]` 表示 `s` 中第 `x` 位到第 `y - 1` 位元素截取。 + +## 协程 + +简而言之:用户态的线程 \ No newline at end of file