为了账号安全,请及时绑定邮箱和手机立即绑定

c#二义性调用实现和显式接口实现

c#二义性调用实现和显式接口实现

C#
森栏 2021-06-03 13:16:55
我有个问题。我有一个类和接口,所以在类中我有 3 个看起来相似的方法,它们是:    public CurrentsFlagAnalysis GetCurrentsFlag(DateTime startDateTime, DateTime endDateTime)    {        //some code    }    CurrentsFlagAnalysis ICurrentService<CurrentsFlagAnalysis>.GetCurrentsFlag(DateTime startDateTime, DateTime endDateTime, byte id)    {        //some code    }    List<CurrentsFlagAnalysis> ICurrentService<List<CurrentsFlagAnalysis>>.GetCurrentsFlag(DateTime startDateTime, DateTime endDateTime, byte id)    {        //some cone    }界面看起来像:public interface ICurrentService <out TCurrent>{    TCurrent GetCurrentsFlag(DateTime startDateTime, DateTime endDateTime, byte id);    CurrentsFlagAnalysis GetCurrentsFlag(DateTime startDateTime, DateTime endDateTime);}这个想法是使用具有相同名称和相同参数但不同返回类型的这两个方法类似于重载,但是当我调用此方法时遇到了问题,例如:    public Task<List<CurrentsFlagAnalysis>> GetCurrentsFlagAsync(DateTime startDateTime, DateTime endDateTime, byte id)    {        return Task.Run(() => GetCurrentsFlag(startDateTime, endDateTime, id));    }从编译时间:错误 CS1501:方法“GetCurrentsFlag”没有重载需要 3 个参数和 Visual Studio 向我发送了一条不明确的调用和可能的参数 null 异常的消息;我得到了模棱两可的调用实现错误,我知道我应该使用某种显式实现,但不知道要咬它。另一件事是这件事是安全的,我应该重命名方法并忘记那个想法。
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 177 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信