这篇文章主要给大家介绍了一种比Math类库abs()方法性能更高的取绝对值方法的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
Math.abs()的实现源码
通过三目运算符判断a是否小于0来实现
/**
* 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.
*
* <p>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;
}
如果换种方式,性能会有20%左右的提升
代码如下
/**
* Created by 谭健 2017/8/13. 12:47.
* All Rights Reserved
*
* int 是 32 位数据
* int 类型的任何正数右移31位 = 0,任何负数右移31位 = 1
* 溢出 31 位截断,空出 31 位补1,得到-1
* a>>31 可以得到该数的符号位 + 还是 -
* 如果 a>>31 + ,那么 a ^ 0 = a ,如果 a>>31 - ,那么 a ^ -1 翻转 a 的二进制
*
* @param a int a
* @return a 的绝对值
*/
public static int abs(int a){
return (a^(a>>31))-(a>>31);
}
奇数偶数的判断
/**
* 一般普遍采用 n % 2 == 0 的方式
* 但是如果换成位运算方式,效率会比前者好很多
*
* 在二进制中,末位为 0 必然是偶数,否则是奇数,并且不论正负
* 所以,是什么数,看看末位就行了
*
* @param a long a
* @return 如果是奇数,返回true,否则返回false
*/
public static boolean isOdd(long a){
return (a & 1) == 1;
}
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对编程学习网的支持。
沃梦达教程
本文标题为:比Math类库abs()方法性能更高的取绝对值方法介绍
基础教程推荐
猜你喜欢
- 一个读写csv文件的C#类 2022-11-06
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- C#类和结构详解 2023-05-30
- C# List实现行转列的通用方案 2022-11-02
- C# 调用WebService的方法 2023-03-09
- C#控制台实现飞行棋小游戏 2023-04-22
- unity实现动态排行榜 2023-04-27
- ZooKeeper的安装及部署教程 2023-01-22
- winform把Office转成PDF文件 2023-06-14
- C# windows语音识别与朗读实例 2023-04-27