JAVA中的一些内置方法
程序员文章站
2022-04-14 17:08:30
Math 函数: Character 函数: ......
math 函数:
1 math.e //自然常数e 2 3 math.abs(12.3); //返回该值的绝对值 4 5 math.ceil(12.3); //向上取整 6 7 math.floor(12.3); //向下取整 8 9 math.pow(x, y); //返回x的y次幂 10 11 math.sqrt(x); //x的二次方根 12 13 math.max(x,y); //返回x、y中较大的那个数 14 15 math.min(x,y); //返回x、y中较小的那个数 16 17 math.cbrt(x); //x的立方根 18 19 math.random(); //随机返回[0,1)之间的无符号double值 20 21 math.random()*10; //随机返回[0,10)之间的无符号double值 22 23 math.rint(12.3); //返回最接近该值的整数,如果居中,则取偶数 24 25 math.round(12.3); //与rint相似,返回值为long 26 27 math.signum(x); //如果x大于0则返回1.0,小于0则返回-1.0,等于0则返回0 28 29 math.copysign(x,y); //返回第一个参数的量值和第二个参数的符号 30 31 math.scalb(x, y); //x*(2的y次幂) 32
character 函数:
1 character.isletter() //是否是一个字母 2 3 character.isdigit() //是否是一个数字字符 4 5 character.iswhitespace() //是否是一个空白字符 6 7 character.isuppercase() //是否是大写字母 8 9 character.islowercase() //是否是小写字母 10 11 character.touppercase() //指定字母的大写形式 12 13 character.tolowercase() //指定字母的小写形式 14 15 character.tostring() //返回字符的字符串形式,字符串的长度仅为1
上一篇: 关于kafka的一些问题理解
下一篇: PHP filter_var 函数用法