Je pensais que je ferais une comparaison de la réponse de Martijn et la réponse de svick ...
Le programme suivant renvoie les résultats suivants:
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"));
}
En conséquence, je suggère d'utiliser la réflexion. Voir ci-dessous.
Répondant au commentaire insipide:
Les ratios sont des reflection:exception
graduations pour 100 000 itérations:
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
... assez juste - si vous vous attendez à ce qu'il échoue avec une probabilité inférieure à ~ 1/47, optez pour l'exception.
Ce qui précède suppose que vous courez à GetProperties()
chaque fois. Vous pourrez peut-être accélérer le processus en mettant en cache le résultat de GetProperties()
chaque type dans un dictionnaire ou similaire. Cela peut être utile si vous comparez sans cesse le même ensemble de types.