Skip to content

Commit

Permalink
20240305
Browse files Browse the repository at this point in the history
  • Loading branch information
linze authored and CompetitiveLin committed Mar 5, 2024
1 parent f7d28b0 commit f670213
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions _posts/2024-02-27-go.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,32 @@ last_modified_at:
pin: false
---

## 基本语法
# 基本语法

变量初始化:

```go
var s string = "string"
var s = "string"
s := "string"
```
```

变量自增:只有后缀自增或自减,并且必须单独一行。

条件判断语句中的初始变量可以在布尔表达式里,并且不能使用0/1作为判断条件
```go
if cond := true; cond {
fmt.Println()
}
```

# 知识点

## 数组和切片

- 数组在内存中是一段连续的内存空间,元素的类型和长度都是固定的;
- 切片在内存中由一个指向底层数组的指针、长度和容量组成的,长度表示当前包含的元素个数,容量表示切片可以拓展的最大元素个数。切片 `s[x: y]` 表示 `s` 中第 `x` 位到第 `y - 1` 位元素截取。

## 协程

简而言之:用户态的线程

0 comments on commit f670213

Please sign in to comment.