gpt4 book ai didi

java - 字节 toPositiveInt 方法

转载 作者:行者123 更新时间:2023-12-02 00:51:58 25 4
gpt4 key购买 nike

JDK 或 Apache Commons(或其他 jar 中)有类似的东西吗?

/**
* Return the integer positive value of the byte. (e.g. -128 will return
* 128; -127 will return 129; -126 will return 130...)
*/
public static int toPositiveInt(byte b) {
int intV = b;
if (intV < 0) {
intV = -intV;
int diff = ((Byte.MAX_VALUE + 1) - intV) + 1;
intV = Byte.MAX_VALUE + diff;
}
return intV;
}

最佳答案

通常,您可以使用一些基本的位操作来实现此目的:

public static int toPositiveInt(byte b) {
return b & 0xFF;
}

因为它很短,所以通常是内联的而不是作为方法调用。

关于java - 字节 toPositiveInt 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2640946/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com