मुझे लगा कि मैं मार्टिज़न के जवाब और स्विक के उत्तर की तुलना करूँगा ...
निम्न प्रोग्राम निम्न परिणाम देता है:
Testing with exception: 2430985 ticks
Testing with reflection: 155570 ticks
void Main()
{
var random = new Random(Environment.TickCount);
dynamic test = new Test();
var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < 100000; i++)
{
TestWithException(test, FlipCoin(random));
}
sw.Stop();
Console.WriteLine("Testing with exception: " + sw.ElapsedTicks.ToString() + " ticks");
sw.Restart();
for (int i = 0; i < 100000; i++)
{
TestWithReflection(test, FlipCoin(random));
}
sw.Stop();
Console.WriteLine("Testing with reflection: " + sw.ElapsedTicks.ToString() + " ticks");
}
class Test
{
public bool Exists { get { return true; } }
}
bool FlipCoin(Random random)
{
return random.Next(2) == 0;
}
bool TestWithException(dynamic d, bool useExisting)
{
try
{
bool result = useExisting ? d.Exists : d.DoesntExist;
return true;
}
catch (Exception)
{
return false;
}
}
bool TestWithReflection(dynamic d, bool useExisting)
{
Type type = d.GetType();
return type.GetProperties().Any(p => p.Name.Equals(useExisting ? "Exists" : "DoesntExist"));
}
एक परिणाम के रूप में मैं प्रतिबिंब का उपयोग करने का सुझाव दूंगा। निचे देखो।
ब्लैंड की टिप्पणी पर प्रतिक्रिया:
अनुपात reflection:exception
100000 पुनरावृत्तियों के लिए टिक हैं :
Fails 1/1: - 1:43 ticks
Fails 1/2: - 1:22 ticks
Fails 1/3: - 1:14 ticks
Fails 1/5: - 1:9 ticks
Fails 1/7: - 1:7 ticks
Fails 1/13: - 1:4 ticks
Fails 1/17: - 1:3 ticks
Fails 1/23: - 1:2 ticks
...
Fails 1/43: - 1:2 ticks
Fails 1/47: - 1:1 ticks
... पर्याप्त रूप से - यदि आप इसे ~ 1/47 से कम संभावना के साथ विफल होने की उम्मीद करते हैं, तो अपवाद के लिए जाएं।
ऊपर माना जाता है कि आप GetProperties()
हर बार दौड़ रहे हैं । आप GetProperties()
एक शब्दकोश या समान में प्रत्येक प्रकार के परिणाम को कैशिंग करके प्रक्रिया को गति देने में सक्षम हो सकते हैं । यदि आप बार-बार एक ही प्रकार के सेट के खिलाफ जाँच कर रहे हैं तो इससे मदद मिल सकती है।