13 static int abs(
int v);
20 static long abs(
long v);
27 static double abs(
double v);
34 static double acos(
double v);
41 static double asin(
double v);
48 static double atan(
double v);
55 static double atan2(
double y,
double x);
62 static double tanh(
double v);
69 static double cbrt(
double v);
76 static double ceil(
double v);
83 static double cos(
double v);
90 static double cosh(
double v);
97 static double exp(
double v);
132 static int max(
int a,
int b);
139 static long max(
long a,
long b);
146 static double max(
double a,
double b);
153 static int min(
int a,
int b);
160 static long min(
long a,
long b);
167 static double min(
double a,
double b);
174 static double pow(
double a,
double b);
195 static double log(
double x);
static double min(double a, double b)
取最小
static double expm1(double v)
计算参数的以 e 为底的指数,减去 1
static long abs(long v)
取绝对值
static double isINF(double x)
判断是不是无限大\小
static double atan(double v)
反正切函数
static double parseDouble(String x)
将字符串解析为double
static int floorDiv(int y, int v)
地板除
static long min(long a, long b)
取最小
static float parseFloat(String x)
将字符串解析为float
static double acos(double v)
反余弦函数
static double exp(double v)
求e为底的指数
static int floatBitsToInt(float v)
float按数据位转int
static double abs(double v)
取绝对值
static double floor(double v)
将数字向下舍入到基数的最接近倍数
static double ceil(double v)
向上取整
static long intBitsToDouble(double v)
double按数据位转long
static double cosh(double v)
双曲余弦函数
static float intBitsToFloat(int v)
int按数据位转float
static long round(double x)
四舍五入
static int min(int a, int b)
取最小
static int max(int a, int b)
取最大
static double sinh(double x)
双曲正弦
static double isNan(double x)
判断是不是有效数字
static double log1p(double x)
计算1加参数以 e 为底的对数
static double intBitsToDouble(int v)
int按数据位转double
static double atan2(double y,double x)
四象限反正切函数
static double pow(double a, double b)
计算乘方
static double tanh(double v)
双曲正切函数
static double log(double x)
计算指定的底数的数字的对数
static double max(double a, double b)
取最大
static int abs(int v)
取绝对值
static int doubleBitsToInt(double v)
double按数据位转int
static long floorDiv(long y, long v)
地板除
static double cos(double v)
余弦函数
static double cbrt(double v)
求立方根
static double random()
浮点数均匀分布随机数0~1
static double asin(double v)
反正弦函数
static long max(long a, long b)
取最大
static double longBitsToDouble(long v)
long按数据位转double