JAVA中的一些内置方法
程序员文章站
2022-07-02 16:47:07
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
推荐阅读
-
Tomcat中应用调用Libvirt库进行控制时可能导致线程卡死问题的解决方法
-
Win7系统打开网页提示应用程序已被JAVA安全阻止的解决方法
-
360浏览器中的快剪辑怎么关闭?360浏览器关闭快剪辑方法
-
linux(centos)中的cron计划任务配置方法[详细]
-
Docker使用过程中的一些注意事项
-
thinkphp中session和cookie无效的解决方法
-
php中http与https跨域共享session的解决方法
-
asp.net开发与web标准的冲突问题的一些常见解决方法
-
说说如何在Vue.js中实现数字输入组件的方法
-
Vue2.x中利用@font-size引入字体图标报错的解决方法