php小編蘋果在這裡為大家介紹一下Go語言中的struct變數。在Go語言中,struct是一種自訂的資料類型,用於封裝一組相關的資料欄位。它類似於其他程式語言中的類別或結構體,可以包含各種類型的字段,如整數、字串、布林值等。透過定義struct變量,我們可以方便地組織和管理數據,使程式碼更加清晰和易於維護。無論是在Web開發、系統程式設計或其他領域,struct都是Go語言中非常重要的一個概念,值得我們深入學習和理解。
我怎麼才能得到這個輸出?
type datas struct { age int height int weight int } func main(){ var age := 5 var height := 10 var weight := 15 namelist := []string{"b", "c", "d"} for count, a := range namelist { a := datas{age+count,height+count,weight+count} //Expected Output: b{6,11,16} , c{7,12,17}, d{8,13,18} } }
我找不到有關此案例的任何信息,我猜不包括此功能。對於這種情況有什麼解決辦法嗎?
相反,您可以使用鍵名稱將資料放在地圖上
type datas struct { age int height int weight int } func main(){ structMap := make(map[string]interface{}) age := 5 height := 10 weight := 15 namelist := []string{"b", "c", "d"} for count, val := range namelist { count = count + 1 // this is due to your expected output out := datas{age+count,height+count,weight+count} structMap[val] = out } fmt.Println(structMap) // output: map[b:{6 11 16} c:{7 12 17} d:{8 13 18}] }
以上是go 中名為 struct 的變數的詳細內容。更多資訊請關注PHP中文網其他相關文章!