如何在Go结构体中初始化特定字段

huangapple go评论80阅读模式
英文:

How to initialize specific fields in a Go struct

问题

如果我有一个具有很长字段列表的 Go struct,是否有一种内置的方法可以在初始化实例时仅为特定字段提供值?

英文:

If i had a Go struct with a long list of fields. Is there a built-in way to initialize an instance while providing value for specific fields only?

答案1

得分: 2

你只需要写structType{fieldName: value}

英文:

You just have to write structType{fieldName: value} !

huangapple
  • 本文由 发表于 2016年11月17日 23:51:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/40659333.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定