vote up 1 vote down star

A related post here pretty much established reflection in Java as a performance hog. Does that apply to the CLR as well? (C#, VB.NET, etc).

EDIT: How does the CLR compare to Java when it comes to reflection? Was that ever benchmarked?

flag

3 Answers

vote up 2 vote down check

I wouldn't really care about the instantiation performance of the object using reflection itself but the actual performance of methods and such since those are after all what I'll be using from the class anyway.

Surely the instantiation takes a lot of time as can be seen in the linked post but since you're most likely using the object's methods instead of just instantiating it, you shouldn't worry too much about reflection performance - as long as you're not doing the method calls by invoking reflected Method objects!

Besides you only need one reflected instance of the object, use .clone() and other clever tricks if you need to create more copies.

link|flag
What if you are using reflection as part of your logic - not necessarily instantiating anything but using your type definition as a guide - sort of "meta-programming" ? – ocdecio Jan 13 at 19:53
If you're not instantiating objects, why would you want to reflect (parts of) them anyway? I'd be interested to see an example of what you exactly mean though, if you have time please explain in more detail. – Esko Jan 13 at 19:55
Suppose you have a list of objects and want to edit their values. Through reflection you could build a single user interface that would allow you to do that. You can define attributes for the labels, max size, etc. – ocdecio Jan 13 at 19:57
Ah, valid case of such behavior and now I understand what you mean. Yeah, that's unfortunately slow but if I remember correctly (a bit hazy here) it is possible to create a proxy object using java.lang.reflect.Proxy for speeding up such functionality by reusing the proxy for every object in list. – Esko Jan 13 at 20:05
I understand that in Java it is slow, but I'm curious if the same applies to C#. – ocdecio Jan 13 at 20:08
vote up 0 vote down

Yeah, reflection in .NET is a performance intensive operation too as it requires querying metadata tables in assemblies.

link|flag
Is that still true even after the assemblies are loaded in memory? – ocdecio Jan 13 at 19:25
Yes. Dynamically resolving types and members by name requires looking them up in the type system which is clearly slower than static resolution. – Mehrdad Afshari Jan 13 at 19:27
Yes it is, because even though the assemblies are in memory you must still look at the metadata tables which is the slow part. – Andrew Hare Jan 13 at 19:27
Related question - was that ever benchmarked? – ocdecio Jan 13 at 19:27
Also... how does the CLR compare to Java when it comes to reflection? – ocdecio Jan 13 at 19:28
show 1 more comment
vote up 0 vote down

The default implementation of Equals for value types is implemented using Reflection. It works, but it is darn slow and it is easy to implement a specific version, which is much faster (the catch is that you have to implement GetHashCode as well). How much faster depends on the actual value type of course, but I have seen some huge boosts here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.