.NET 4 का उपयोग करके, मैं नीचे दिए गए नमूने में पहली विधि कॉल को हल करने के लिए कंपाइलर की अक्षमता से उलझन में हूं।डिफ़ॉल्ट पैरामीटर और जेनेरिक के साथ विधि समाधान समस्या
using System;
namespace MethodResolutionTest
{
class Program
{
static void Main(string[] args)
{
NonGeneric foo = null;
// ambiguous
foo.Ext1(x => new NonGeneric());
// resolves to first Ext1
foo.Ext1(x => new NonGeneric(), 1);
// resolves to first Ext2
foo.Ext2(x => new NonGeneric());
// resolves to first Ext2
foo.Ext2(x => new NonGeneric(), 1);
// resolves to second Ext2
foo.Ext2(x => "foo");
// resolves to second Ext2
foo.Ext2(x => "foo", 1);
// resolves to first Ext3
foo.Ext3(x => new NonGeneric());
// resolves to first Ext3
foo.Ext3(x => new NonGeneric(), 1);
// resolves to second Ext3
foo.Ext3(x => "foo");
// resolves to second Ext3
foo.Ext3(x => "foo", 1);
}
}
public class NonGeneric
{
}
public class Generic<T> : NonGeneric
{
}
public static class Extensions1
{
public static NonGeneric Ext1(this NonGeneric first, Func<NonGeneric, NonGeneric> getNext, int i = 0)
{
return null;
}
public static Generic<TNext> Ext1<TNext>(this NonGeneric first, Func<NonGeneric, TNext> getNext, int i = 0, string s = null)
{
return null;
}
}
// only difference between Extensions2 and Extensions1 is that the second overload no longer has a default string parameter
public static class Extensions2
{
public static NonGeneric Ext2(this NonGeneric first, Func<NonGeneric, NonGeneric> getNext, int i = 0)
{
return null;
}
public static Generic<TNext> Ext2<TNext>(this NonGeneric first, Func<NonGeneric, TNext> getNext, int i = 0)
{
return null;
}
}
// Extensions3 explicitly defines an overload that does not default the int parameter
public static class Extensions3
{
public static NonGeneric Ext3(this NonGeneric first, Func<NonGeneric, NonGeneric> getNext)
{
return Ext3(first, getNext, default(int));
}
public static NonGeneric Ext3(this NonGeneric first, Func<NonGeneric, NonGeneric> getNext, int i = 0)
{
return null;
}
public static Generic<TNext> Ext3<TNext>(this NonGeneric first, Func<NonGeneric, TNext> getNext, int i = 0)
{
return null;
}
}
}
क्या कोई इस पर कुछ प्रकाश डाल सकता है? मुझे संदेह है कि मेरे पास वास्तव में कंपाइलर (Extensions3
के अनुसार) की मदद करने के लिए मेरे एपीआई को संशोधित करने के अलावा अन्य कोई रास्ता नहीं है, लेकिन यदि कोई आसान/बेहतर तरीका है तो मुझे यह सुनना अच्छा लगेगा।
संकलक दोनों 'Extensions2' और' Extensions3' स्थितियों में ठीक चुनता है, इसलिए यह नहीं है है यह सरल है। साथ ही, अगर मैं डिफ़ॉल्ट 'int' पैरामीटर नहीं चाहता था, तो जाहिर है कि मैंने इसे पहले स्थान पर घोषित नहीं किया होगा! –
लेकिन वैकल्पिक पैरामीटर के साथ आपके पास दो विधियां क्यों हैं जो वैकल्पिक पैरामीटर छोड़े जाने पर प्रभावी रूप से अस्पष्ट हैं? यदि आपको बिल्कुल ** ** दोनों विधियों की आवश्यकता है, तो आपको या तो अपने 'एक्सटेंशन 2' या 'एक्सटेंशन 3' समाधानों का उपयोग करना होगा। – khellang
@ खेलेंग: क्या आप ऐसे व्यवहार (ओवरलोड रिज़ॉल्यूशन अस्पष्टता) की ओर अग्रसर सी # भाषा विनिर्देश खंडों को इंगित कर सकते हैं? –