This is fail.
int i = 2;
i = i -Double.MIN_VALUE;
But this is past
int i = 2;
i -= Double.MIN_VALUE;
Why can it be compiled?
I am using JDK 8
This is fail.
int i = 2;
i = i -Double.MIN_VALUE;
But this is past
int i = 2;
i -= Double.MIN_VALUE;
Why can it be compiled?
I am using JDK 8