在 Go 中,使用递归类型定义结构体可能会导致“无效”递归类型”错误。当结构体包含与结构体本身类型相同的字段时,会发生此错误。
例如,以下结构体定义无效:
type Environment struct { parent Environment symbol string value RCFAEValue }
发生错误的原因是编译器无法确定结构的大小。指针的大小已知,但包含自身的结构体的大小未知。
要解决此问题,您需要将父字段设置为指针:
type Environment struct { parent *Environment // note that this is now a pointer symbol string value RCFAEValue }
这确保环境结构的大小已知,并允许编译器继续编译。
更新结构体定义后,您可以创建一个环境结构体,如下所示:
Environment{&fun_Val.ds, fun_Val.param, exp.arg_exp.interp(env)}
通过使用 & 运算符,您将获取 fun_Val.ds 变量的地址并分配它到父字段,类型为*Environment。
以上是如何解决Go Structs中的'Invalid Recursive Type”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!