热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Java数学减法精确(长x,长y)方法

Java数学减法精确(长x,长y)方法原文:https:/

Java 数学减法精确(长 x,长 y)方法

原文:https://www . geesforgeks . org/Java-math-减法 exactlong-x-long-y-method/

java.lang.Math .减法精确()是 java 中的一个内置数学函数,它返回
参数的差值。如果结果溢出很长时间,它将引发异常。由于减法精确(长 x,长 y)是静态
所以不需要创建对象。

语法:

public static long subtractExact(long x, long y)
Parameter :
x : the first value
y : the second value to be subtracted from the first
Return :
This method returns the difference of the arguments.
Exception :
It throws ArithmeticException - if the result overflows a long.

示例:展示 java.lang.Math .减法精确()方法的工作。

// Java program to demonstrate working
// of java.lang.Math.subtractExact() method
import java.lang.Math;
class Gfg1 {
    // driver code
    public static void main(String args[])
    {
        long x = 11111111111l;
        long y = 999l;
        System.out.println(Math.subtractExact(x, y));
    }
}

输出:

11111110112

// Java program to demonstrate working
// of java.lang.Math.subtractExact() method
import java.lang.Math;
class Gfg2 {
    // driver code
    public static void main(String args[])
    {
        long a = Long.MIN_VALUE;
        long b = 1;
        System.out.println(Math.subtractExact(a, b));
    }
}

输出:

Runtime Error :
Exception in thread "main" java.lang.ArithmeticException: long overflow
at java.lang.Math.subtractExact(Math.java:849)
at Gfg2.main(File.java:13)

推荐阅读
author-avatar
琦玉老师
迷茫的,没有热情的死肥宅
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有