Does creating an object using reflection rather than calling the class constructor result in any significant performance differences?
|
Yes - absolutely. Looking up a class via reflection is, by magnitude, more expensive. Quoting Java's documentation on reflection:
Here's a simple test I hacked up in 5 minutes on my machine, running Sun JRE 6u10:
With these results:
Bear in mind the lookup and the instantiation are done together, and in some cases the lookup can be refactored away, but this is just a basic example. Even if you just instantiate, you still get a performance hit:
Again, YMMV. |
|||||||||||||||||||
|
|
Yes, it's slower. But remember the damn #1 rule--PREMATURE OPTIMIZATION IS THE ROOT OF ALL EVIL (Well, may be tied with #1 for DRY) I swear, if someone came up to me at work and asked me this I'd be very watchful over their code for the next few months. You must never optimize until you are sure you need it, until then, just write good, readable code. Oh, and I don't mean write stupid code either. Just be thinking about the cleanest way you can possibly do it--no copy and paste, etc. (Still be wary of stuff like inner loops and using the collection that best fits your need--Ignoring these isn't "unoptimized" programming, it's "bad" programming) It freaks me out when I hear questions like this, but then I forget that everyone has to go through learning all the rules themselves before they really get it. You'll get it after you've spent a man-month debugging something someone "Optimized". EDIT: An interesting thing happened in this thread. Check the #1 answer, it's an example of how powerful the compiler is at optimizing things. The test is completely invalid because the non-reflective instantiation can be completely factored out. Lesson? Don't EVER optimize until you've written a clean, neatly coded solution and proven it to be too slow. |
|||||||||||||||||||||
|
|
There is some overhead with reflection, but it's a lot smaller on modern VMs than it used to be. If you're using reflection to create every simple object in your program then something is wrong. Using it occasionally, when you have good reason, shouldn't be a problem at all. |
|||
|
|
|
You may find that A a = new A() is being optimised out by the JVM. If you put the objects into an array, they don't perform so well. ;) The following prints...
This suggest the difference is about 150 ns on my machine. |
|||||||||||||||
|
|
"Significant" is entirely dependent on context. If you're using reflection to create a single handler object based on some configuration file, and then spending the rest of your time running database queries, then it's insignificant. If you're creating large numbers of objects via reflection in a tight loop, then yes, it's significant. In general, design flexibility (where needed!) should drive your use of reflection, not performance. However, to determine whether performance is an issue, you need to profile rather than get arbitrary responses from a discussion forum. |
|||
|
|
|
If there really is need for something faster than reflection, and it's not just a premature optimization, then bytecode generation with ASM or a higher level library is an option. Generating the bytecode the first time is slower than just using reflection, but once the bytecode has been generated, it is as fast as normal Java code and will be optimized by the JIT compiler. Some examples of applications which use code generation:
|
||||
|
|
|
Yes, it is significantly slower. We were running some code that did that, and while I don't have the metrics available at the moment, the end result was that we had to refactor that code to not use reflection. If you know what the class is, just call the constructor directly. |
|||
|
|
Be careful of the benchmarks posted above! They are flawed. See this post: http://stackoverflow.com/questions/647111/newinstance-vs-new |
|||||
|
|
Reflection is slow, though object allocation is not as hopeless as other aspects of reflection. Achieving equivalent performance with reflection-based instantiation requires you to write your code so the jit can tell which class is being instantiated. If the identity of the class can't be determined, then the allocation code can't be inlined. Worse, escape analysis fails, and the object can't be stack-allocated. If you're lucky, the JVM's run-time profiling may come to the rescue if this code gets hot, and may determine dynamically which class predominates and may optimize for that one. Be aware the microbenchmarks in this thread are deeply flawed, so take them with a grain of salt. The least flawed by far is Peter Lawrey's: it does warmup runs to get the methods jitted, and it (consciously) defeats escape analysis to ensure the allocations are actually occurring. Even that one has its problems, though: for example, the tremendous number of array stores can be expected to defeat caches and store buffers, so this will wind up being mostly a memory benchmark if your allocations are very fast. (Kudos to Peter on getting the conclusion right though: that the difference is "150ns" rather than "2.5x". I suspect he does this kind of thing for a living.) |
||||
|
|
|
Yes, always will be slower create an object by reflection because the JVM cannot optimize the code on compilation time. See the Sun/Java Reflection tutorials for more details. See this simple test:
|
|||||||||
|
|
Often you can use Apache commons BeanUtils or PropertyUtils which introspection (basically they cache the meta data about the classes so they don't always need to use reflection). |
|||
|
|
|
In the doReflection() is the overhead because of Class.forName("misc.A") (that would require a class lookup, potentially scanning the class path on the filsystem), rather than the newInstance() called on the class. I am wondering what the stats would look like if the Class.forName("misc.A") is done only once outside the for-loop, it doesn't really have to be done for every invocation of the loop. |
|||
|
|
|
Interestingly enough, settting setAccessible(true), which skips the security checks, has a 20% reduction in cost. Without setAccessible(true)
With setAccessible(true)
|
|||||
|
|
I came across this question because I've been wondering about the performance of a lot of the server software I've been working with. And I mean vendor software from some very large vendors. I too, had read on Sun's and other sites about avoiding reflection code because of performance. Yet more and more I'm seeing large server software which is extensively based on reflection and incorporates layers and layers of the stuff. Presumably to adhere to things such as decoupling principles and dynamically generating code from drag and drop development GUIs. Is this really an issue or am I just worrying about nothing? :-) |
|||
|
|
|
The benchmark in the top answer is badly flawed. The non-reflective instantiation of A() will likely be eliminated by the JVM as dead code - meaning you are simply benchmarking the loop and not object instantiation. |
|||||||
|
