c# – 为什么这个电话不明确?

c# – 为什么这个电话不明确?,第1张

概述任何人都可以解释,为什么以下代码产生错误? (在Microsoft Visual Studio 2008中编译) class Base1 { };class Base2 { }interface I1 { }interface I2 { }class C : I1, I2 { }static class Program{ static T M1<T> 任何人都可以解释,为什么以下代码产生错误? (在Microsoft Visual Studio 2008中编译)
class Base1 {  };class Base2 {  }interface I1   {   }interface I2   {   }class C : I1,I2 { }static class Program{    static T M1<T>(this T t,I1 x) where T : Base1    {        return t;    }    static T M1<T>(this T t,I2 x) where T : Base2    {        return t;    }    static voID Main(string[] args)    {        Base1 b1 = new Base1();        C c = new C();        b1.M1(c);    }}

错误是

The call is ambiguous between the following methods or propertIEs: ‘ConsoleApplication1.Program.M1<ConsoleApplication1.Base1>(ConsoleApplication1.Base1,ConsoleApplication1.I1)‘ and ‘ConsoleApplication1.Program.M1<ConsoleApplication1.Base1>(ConsoleApplication1.Base1,ConsoleApplication1.I2)

我认为编译器可以使用“where”子句区分两种方法

解决方法 约束不是方法签名的一部分,因此不用于解决. 总结

以上是内存溢出为你收集整理的c# – 为什么这个电话不明确?全部内容,希望文章能够帮你解决c# – 为什么这个电话不明确?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1240776.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存