📄 moremath.java
字号:
package com.brackeen.javagamebook.util;
/**
The MoreMath class provides functions not contained in the
java.lang.Math or java.lang.StrictMath classes.
*/
public class MoreMath {
/**
Returns the sign of the number. Returns -1 for negative,
1 for positive, and 0 otherwise.
*/
public static int sign(short v) {
return (v>0)?1:(v<0)?-1:0;
}
/**
Returns the sign of the number. Returns -1 for negative,
1 for positive, and 0 otherwise.
*/
public static int sign(int v) {
return (v>0)?1:(v<0)?-1:0;
}
/**
Returns the sign of the number. Returns -1 for negative,
1 for positive, and 0 otherwise.
*/
public static int sign(long v) {
return (v>0)?1:(v<0)?-1:0;
}
/**
Returns the sign of the number. Returns -1 for negative,
1 for positive, and 0 otherwise.
*/
public static int sign(float v) {
return (v>0)?1:(v<0)?-1:0;
}
/**
Returns the sign of the number. Returns -1 for negative,
1 for positive, and 0 otherwise.
*/
public static int sign(double v) {
return (v>0)?1:(v<0)?-1:0;
}
/**
Faster ceil function to convert a float to an int.
Contrary to the java.lang.Math ceil function, this
function takes a float as an argument, returns an int
instead of a double, and does not consider special cases.
*/
public static int ceil(float f) {
if (f > 0) {
return (int)f + 1;
}
else {
return (int)f;
}
}
/**
Faster floor function to convert a float to an int.
Contrary to the java.lang.Math floor function, this
function takes a float as an argument, returns an int
instead of a double, and does not consider special cases.
*/
public static int floor(float f) {
if (f >= 0) {
return (int)f;
}
else {
return (int)f - 1;
}
}
/**
Returns true if the specified number is a power of 2.
*/
public static boolean isPowerOfTwo(int n) {
return ((n & (n-1)) == 0);
}
/**
Gets the number of "on" bits in an integer.
*/
public static int getBitCount(int n) {
int count = 0;
while (n > 0) {
count+=(n & 1);
n>>=1;
}
return count;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -