首页 > 其他 > 详细

Golang使用注意点

时间:2020-06-18 21:49:05      阅读:60      评论:0      收藏:0      [点我收藏+]

select break

go中使用for select 结构,select的break只能跳出break,不能跳出for循环

package main

import (
	"fmt"
	"time"
)

func main() {
	ch := make(chan int)
	ok := make(chan bool)
	go func() {
		ch <- 1
		ch <- 2
		ch <- 3
		close(ch)
	}()
	go test(ch, ok)
	<-ok
}

func test(ch chan int, ook chan bool) {
	for {
		select {
		case resp,ok := <-ch:
			if !ok {
				break
			}
			fmt.Println(resp)
		case <-time.After(time.Second):
			fmt.Printf("1s now!")
			break
		}
	}
}

chan close

向关闭的chan读取数据,chan会返回相关的空数据,内置类型返回0值数据,自定义struct返回空指针

package main

import (
	"fmt"
	"time"
)

type Obj struct {
	val  int
	name string
}

func main() {
	ch := make(chan int, 1)
	ok := make(chan *Obj, 2)
	go func() {
		defer close(ok)
		defer close(ch)
		ok <- &Obj{val: 1, name: "ww"}
		ch <- 1
	}()
	go test(ch, ok)
	select {
	case <-time.After(2 * time.Second):
		fmt.Println("2s close main")
	}
}

func test(ch chan int, ok chan *Obj) {
	i := 0
	for {
		o := <-ok
		fmt.Println(o)
		r := <-ch
		fmt.Println(r)
		i++
		if i >= 2 {
			break
		}
	}
}

Golang使用注意点

原文:https://www.cnblogs.com/weiweng/p/13159595.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!