英文:
What alternative to reflect.StructOf exists, prior to its addition to in 633ab74?
问题
我有一些使用reflect.StructOf
的代码,这个函数应该会在go1.7中发布。但我不知道的是,这个函数直到大约两周前才可用,并且只在当前的master
分支中。在这个方法被添加之前,如何在运行时创建自定义的结构体呢?
英文:
I have some code that makes use of reflect.StructOf
, which will presumably land in go1.7. Little did I know, that this wasn't available until only about 2 weeks ago, and only in current master
. How does one create custom structs at runtime prior to this method being added?
答案1
得分: 4
在 reflect.StructOf 添加之前,无法在运行时创建新的结构体类型。
英文:
There was no way to create a new struct type at runtime prior to the addition of reflect.StructOf.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论