接口继承在 C# 中如下所示:interface IA{ void MethodX();}interface IB : IA{ void MethodY();}如何在 go 中重用接口定义? 查看完整描述