Java中绝对值函数使用说明

绝对值函数使用说明

绝对值函数是JDK中Math.java中的实现方法,其用来得到表达式的绝对值。

其实现非常简单,源码如下:

 /**
 * Returns the absolute value of an {@code int} value.
 * If the argument is not negative, the argument is returned.
 * If the argument is negative, the negation of the argument is returned.
 *
 *

Note that if the argument is equal to the value of
 * {@link Integer#MIN_VALUE}, the most negative representable
 * {@code int} value, the result is that same value, which is
 * negative.
 *
 * @param a the argument whose absolute value is to be determined
 * @return the absolute value of the argument.
 */
 public static int abs(int a) {
 return (a < 0) ? -a : a;
 }

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:SEO优化专员,转转请注明出处:https://www.chuangxiangniao.com/p/893272.html

(0)
上一篇 2025年1月3日 23:50:13
下一篇 2025年1月3日 23:50:43

AD推荐 黄金广告位招租... 更多推荐

相关推荐

  • C\C++ 中绝对值函数如何表达

    不同类型的数据使用不同类型的绝对值函数: 整型: int abs(int i) //返回整型参数i的绝对值 1 复数: double cabs(struct complex znum) //返回复数znum的绝对值 1 双精度浮点型: do…

    编程技术 2025年1月3日
    100
  • java绝对值函数特性和运用

    1、正数的绝对值是其本身。 2、负数的绝对值是其相反数。 3、零的绝对值是其本身。 绝对值:自减函数配合绝对值,先降序再升序。 int number = 6;System.out.println(“原值输出:”);w…

    编程技术 2025年1月3日
    100
  • PHP危险函数禁用深入详解

    这篇文章主要介绍了PHP危险函数禁用深入详解,列举了一些比较敏感的函数,有感兴趣的同学可以学习下。 error_log() 功能描述:将错误信息发送到指定位置(文件)。 安全备注:在某些版本的 PHP 中,可使用 error_log() 绕…

    编程技术 2025年1月3日
    200

发表回复

登录后才能评论

联系我们

156-6553-5169

在线咨询: QQ交谈

邮件:253000106@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

联系微信