go 遍历执行string集合
时间: 2024-01-24 14:03:45 浏览: 109
Go语言之自定义集合Set
可以使用`for range`循环来遍历执行string集合,示例代码如下:
```go
package main
import "fmt"
func main() {
strings := []string{"hello", "world", "go"}
for _, str := range strings {
fmt.Println(str)
}
}
```
输出结果:
```
hello
world
go
```
阅读全文