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