How to create Slice of Struct in Golang?
Example
package main
import (
"fmt"
)
type Widget struct {
id int
attrs []string
}
func main() {
widgets := []Widget{
Widget{
id: 10,
attrs: []string{"blah", "foo"},
},
Widget{
id: 11,
attrs: []string{"foo", "bar"},
},
Widget{
id: 12,
attrs: []string{"xyz"},
},
}
for _, j := range widgets {
fmt.Printf("%d ", j.id)
for _, y := range j.attrs {
fmt.Printf(" %s ", y)
}
fmt.Println()
}
}
10 blah foo
11 foo bar
12 xyz
Most Helpful This Week
Empty Interface Type in Go Programming Language
5 Must-Know Blockchain Trends for 2024 and Beyond
How append a slice to an existing slice in Golang?
Illustration of Checkpoint Synchronization in Golang
Panic: runtime error: index out of range error in Golang
GO Program to Check Whether a Number is Palindrome or Not