package main
import (
"fmt"
)
func files(fs []string) <-chan string{
c := make(chan string, 1000) //带1000个缓冲的channel,1000个以内不会阻塞
go func(){
for _, f := range fs{
c <- f
}
close(c) //切片内所有文件发送完毕,关闭
}()
return c
}
func filterSize(in <-chan string) <-chan string{
c := make(chan string, 1000) //带1000个缓冲的channel,1000个以内不会阻塞
go func (){
for i := range in{
fmt.Println("filter size got:", i)
if i == "123.txt" || i == "456.txt"{
c <- i
}
}
close(c)
}()
return c
}
func main() {
fmt.Println("file filter service")
fs := []string{"123.txt","456.txt","789.txt","1222.txt"}
c := filterSize(files(fs))
for i := range c{ //阻塞main gorouting, 循环取channel中的数据,直到channel关闭
fmt.Println("main got:", i)
}
}
输出:
file filter service
filter size func got: 123.txt
filter size func got: 456.txt
filter size func got: 789.txt
filter size func got: 1222.txt
main got: 123.txt
main got: 456.txt
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
RGB HSV 转换
RGB HSV 互转工具
HEX CMYK 转换工具
HEX CMYK 互转工具