英文:
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}
!
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论