goland中结构字段怎么将其导出
时间: 2023-05-21 18:03:20 浏览: 188
GoLand 翻译插件(Translation)
可以使用大写字母开头的字段名来导出结构字段,例如:
type Person struct {
Name string // 导出字段
age int // 非导出字段
}
在这个例子中,Name 字段是导出的,因为它是大写字母开头的。而 age 字段是非导出的,因为它是小写字母开头的。
阅读全文
GoLand 翻译插件(Translation)