英文:
Golang. Add a property to a struct at runtime
问题
你好!根据你的要求,我将为你翻译以下内容:
class type User {
name string
}
是否可以在运行时添加一个名为age
的字段?
英文:
class type User {
name string
}
Is it possible to add a field age
at runtime?
答案1
得分: 7
不,这是不可能的。
即使使用Java或C++语法代替有效的Go语法也不行。
英文:
No it is not possible.
Not even with Java or C++ syntax instead of valid Go.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论