feat(Go-StudyExample): 新增 网络及端口测试、传值和传址的比较、切片测试、Map测试、通道测试、测试init调用、测试error、defer关键字、recover测试、测试携程的异常捕获、矩阵旋转

This commit is contained in:
huangzj
2020-07-13 17:02:04 +08:00
parent f5894a2680
commit 9ad10e8cd9
12 changed files with 514 additions and 13 deletions
+33
View File
@@ -0,0 +1,33 @@
/*
* @Author : huangzj
* @Time : 2020/7/13 14:27
* @Description:通道测试
*/
package originGoLanguage
import "fmt"
func TestChannel() {
list := []int{0, 1, 45, -12, 33, 90, -22, 100}
//通道的初始化
c := make(chan int)
go sum(list[len(list)/2:], c)
go sum(list[:len(list)/2], c)
//通道获取值的赋值
x, y := <-c, <-c
fmt.Println(x, y, x+y)
//通道关闭
close(c)
}
func sum(list []int, c chan int) {
sum := 0
for _, i := range list {
sum += i
}
c <- sum
}