I suggested returning Collections.unmodifiableList() instead of directly returning a member variable, and my colleague is concerned that there would be a performance hit. Of course the best answer is to measure it, and we may do that - but I'd like to know your experiences and any references, pro or con.

link|improve this question

76% accept rate
2  
This is the kind of unsubstantiated, pre-mature micro-optimization that drives me crazy. Be sure to point your colleague to these responses and the source code itself. – duffymo Jul 7 '11 at 0:46
Thanks, Duffy; I'll do it. I'd rather take the time to measure (and still might), but it's good to have clear answers here, not just for me, and not just for this once. I expected I would find a question along these lines already asked & well answered here. When I didn't - well, I asked. – Carl Manaster Jul 7 '11 at 0:49
@duffymo agreed entirely. @Carl Manaster the question you need to ask your colleague is 'performance hit compared to what?' You can get the wrong answer in zero time if that's what you want. It isn't. – EJP Jul 7 '11 at 2:07
feedback

3 Answers

up vote 5 down vote accepted

No. At least, the OpenJDK implementation literally "replaces" the modification methods with UnsupportedOperationExceptions, the rest adds one level of indirection, which should just get optimized away by the compiler VM (and even so, one level of indirection wouldn't be costly).

If you wish to return a list that cannot be modified, any performance impact would pale in comparison to the loss in correctness, I wouldn't avoid it for performance alone, and I certainly wouldn't avoid it if it's what you need.

link|improve this answer
2  
Optimized away by the VM (Hotspot), not the Java-compiler. – PaĆ­lo Ebermann Jul 7 '11 at 0:25
+1 great answer – Bohemian Jul 7 '11 at 0:42
feedback

If you look at the implementation you'll see that Collections.unmodifiable is just a thin wrapper around the real collection that throws an exception for all remove/add methods instead of forwarding it. So no there's no performance hit (the forwarding call will be inlined by the JIT).

So yes you absolutely should return an unmodifiable collection instead of the original most of the times - much better coding practice.

link|improve this answer
feedback

If the JIT inlines the functions, no. If it doesn't, then yes, a slight performance hit will happen, but you will likely not be able to notice it unless you're having a very tight loop.

It likely will inline the function, unless maybe you compile for debugging.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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