在我的特定用例中,我想知道如何在Go中实现以下Java代码 -
class Channel {
public String name;
public Channel(){}
}
ArrayList<Channel> channels = new ArrayList<Channel>();
我已经开始了,我认为这将是Go中的Channel的适当结构 -
type Channel struct {
Name string
}
我只需要知道ArrayList如何在Go
中工作答案 0 :(得分:33)
使用切片:
var channels []Channel // an empty list
channels = append(channels, Channel{name:"some channel name"})
此外,您的频道声明略有偏差,您需要'type'关键字:
type Channel struct {
name string
}
以下是一个完整的示例:http://play.golang.org/p/HnQ30wOftb
有关详细信息,请参阅slices article。
还有go tour(tour.golang.org)和语言规范(golang.org/ref/spec,请参阅#Slice_types,#Slices和#Appending_and_copying_slices)。
答案 1 :(得分:1)
使用切片。
有关常见切片习语的详细信息,请参阅the "Slice Tricks" wiki page。
答案 2 :(得分:0)
此作品
//make the object Channel
type Channel struct {
name string
}
// a empty list
var channels = []*Channel {}
//and finally add this object
channels = append(channels, Channel{name:"juan carlos anez mejias"})