Problem and solution
Posted Apr 7, 2008 6:17 UTC (Mon) by
man_ls (subscriber, #15091)
In reply to:
Problem and solution by olecom
Parent article:
What If I Don't Actually Like My Users?
It depends. Quite often it doesn't matter much, and the compact version can be better (at least it takes less time to write). You know what they say about premature optimization, don't you?
By the way, with Java your best optimization is to write while (i != 0) instead of while (i > 0), because otherwise the JVM will perform arithmetic comparisons instead of logical. (Yes, it is pitiful.) I believe they have fixed it now, but it would be nice to know for sure.
(
Log in to post comments)