package demo type People struct{ Name string Age uint } type UserInfo struct{ Address string Hobby []string NickNage string }
另一个文件:
import demo
Go在包级别没有保留结构,接口或变量的主列表,所以很遗憾你不能这样做.
package demo type People struct{ Name string Age uint } type UserInfo struct{ Address string Hobby []string NickNage string }
另一个文件:
import demo