2016-05-16 77 views

回答

2

考慮的Struct

type State struct{ 
    name string 
    population string 
} 

您有幾種方法的定義。你可以申報5 State小號

var states [5]State 

數組或者你可以在一個線路分配(和自動聲明)

var states = [5]State{} 

states := State{} 

您可能希望從Go documentation開始。