接口继承在 C# 中如下所示:
interface IA{
void MethodX();
}
interface IB : IA{
void MethodY();
如何在 go 中重用接口定义?
斯蒂芬大帝
相关分类