我想构建一个继承自其他多个结构的新结构,类似于:
struct new_struct like struct_a, struct_b, struct_c is {
// The new_struct supposed to have all the fields of struct a/b/c
};
有没有办法从E?
中继承多个结构感谢您的帮助
答案 0 :(得分:2)
不,e中没有多重继承。但是,不久前添加了接口,这可能是最接近的东西。
你的目的是什么?在某些情况下,'struct_member'宏或子类型可以执行多重继承所需的作业。