During bug fixing in very old project I've faced with strange method, it looks like this:
void waiter() {
for (int i = 0; i < 20000; i++) ;
}
Does it cause halting some time or it will be omitted by JVM optimization?
|
|
It will be optimized after few runs by JIT. The JVM , at the first run, needs to check if the value if Check this article as well : |
|||
|
|
|
It may be optimised, it may not. Depends on the level of optimisation in the compiler. The variable This will happen under some optimisation settings and compilers, and not under others. |
|||||||||
|
|
I don't know if it has changed, I haven't used java for 2 years but it doesn't seem to. http://www.herongyang.com/JVM/Benchmark-Int-Empty-Loop-16-Nanosecond.html http://www.herongyang.com/JVM/Benchmark-Long-Empty-Loop-25-Nanosecond.html
|
|||
|
|
Yes, it will be optimised.I've tried :D |
|||
|
|