赋值运算符
# 4. 赋值运算符
package main
import "fmt"
func main() {
d := 8 + 2*8 // 赋值运算从右向左
fmt.Println(d) // 24
x := 10
x += 5 // x=x+5
fmt.Println(x) // 15
}
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
上次更新: 2022/06/12, 15:48:09