```
package main
import (
"bufio"
"fmt"
"math/rand"
"os"
"strconv"
"sync"
)
var path string = "./num.txt"
func Write() {
file, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0755)
defer file.Close()
if err != nil {
fmt.Println(err)
}
writer := bufio.NewWriter(file)
for i := 0; i < 1000; i++ {
x := rand.Intn(2000)
writer.WriteString(strconv.Itoa(x) + "\n")
}
writer.Flush()
}
var wg sync.WaitGroup
func Read() chan int {
file, err := os.Open(path)
if err != nil {
fmt.Println(err)
}
defer file.Close()
scanner := bufio.NewScanner(file)
ch := make(chan int, 1000)
for i := 0; i < 3; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for scanner.Scan() {
t, _ := strconv.Atoi(scanner.Text())
// fmt.Println(t)
ch<-t
}
}()
}
wg.Wait()
close(ch)
return ch
}
func main() {
Write()
ch := Read()
fmt.Println(len(ch))
}
```
有时候会产生死锁,大部分情况下通道中数据长度也不对。
本人小白,思考很久,不知道为啥会出现问题,求助~ 谢谢各位
有疑问加站长微信联系(非本文作者)