In un esempio precedente, abbiamo visto come
|
|
package main
|
|
import "fmt"
|
|
func main() {
|
|
Itereremo su 2 valori nel canale |
queue := make(chan string, 2)
queue <- "one"
queue <- "two"
close(queue)
|
Questo |
for elem := range queue {
fmt.Println(elem)
}
}
|
$ go run range-over-channels.go
one
two
|
|
Questo esempio ci ha dimostrato che è comunque possibile chiudere un canale non vuoto e ricevere i valori rimanenti. |
Prossimo esempio: Timer.