gpt4 book ai didi

go - 制作一个结构 "range-able"?

转载 作者:IT王子 更新时间:2023-10-29 01:10:06 28 4
gpt4 key购买 nike

type Friend struct {
name string
age int
}

type Friends struct {
friends []Friend
}

我想让 Friends 具有范围,这意味着,如果我有一个类型为 Friends 的变量 my_friends,我可以循环通过它:

for i, friend := range my_friends {
// bla bla
}

在 Go 中有可能吗?

最佳答案

Friends 必须是一个结构体吗?否则简单地做

type Friends []Friend

关于go - 制作一个结构 "range-able"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12894333/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com