判断整数_Java如何判断整数溢出,溢出后怎么得到提示

来源:https://blog.csdn.net/qq_33330687/article/details/81626157

问题

在之前刷题的时候遇见一个问题,需要解决int相加后怎么判断是否溢出,如果溢出就返回Integer.MAX_VALUE

解决方案

JDK8已经帮我们实现了Math下,不得不说这个方法是在StackOverflow找到了的,确实比国内一些论坛好多了

加法

public static int addExact(int x, int y) {
    int r = x + y;
    // HD 2-12 Overflow iff both arguments have the opposite sign of the result
    if (((x ^ r) & (y ^ r)) 0) {
        throw new ArithmeticException("integer overflow");
    }
    return r;
}

减法

public static int subtractExact(int x, int y) {
      int r = x - y;
      // HD 2-12 Overflow iff the arguments have different signs and
      // the sign of the result is different than the sign of x
      if (((x ^ y) & (x ^ r)) 0) {
          throw new ArithmeticException("integer overflow");
      }
      return r;
  }

乘法

public static int multiplyExact(int x, int y) {
      long r = (long)x * (long)y;
      if ((int)r != r) {
          throw new ArithmeticException("integer overflow");
      }
      return (int)r;
  }

注意 long和int是不一样的

public static long multiplyExact(long x, long y) {
      long r = x * y;
      long ax = Math.abs(x);
      long ay = Math.abs(y);
      if (((ax | ay) >>> 31 != 0)) {
          // Some bits greater than 2^31 that might cause overflow
          // Check the result using the divide operator
          // and check for the special case of Long.MIN_VALUE * -1
         if (((y != 0) && (r / y != x)) ||
             (x == Long.MIN_VALUE && y == -1)) {
              throw new ArithmeticException("long overflow");
          }
      }
      return r;
  }

如何使用?

直接调用是最方便的,但是为了追求速度,应该修改一下,理解判断思路,因为异常是十分耗时的操作,无脑异常有可能超时


8501c265e795a06610267febc1eb0344.png

4199d6f524c4ea25f44ed794ff98b164.gif

  点击加入【技术交流群】

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值