当所计算数字大于2^30 次方或等于2^31 次方但余下的数大于7或小于-2^30 次方或等于-2^31 次方但余下的数小于-8时,只要再计算一次就溢出。
public static int reverse(int x) {
int pop;
int res = 0;
while (x != 0) {
pop = x % 10;
System.out.println("pop: " + pop);
x = x / 10;
System.out.println("x: " + x);
if (res > Integer.MAX_VALUE / 10 || (res == Integer.MAX_VALUE / 10 && pop > 7)) {
return 0;
}
if (res < Integer.MIN_VALUE / 10 || (res == Integer.MIN_VALUE / 10 && pop < -8)) {
return 0;
}
System.out.println("res before: " + res);
res = res * 10 + pop;
System.out.println("res after: " + res);
}
return res;
}