Android中Math常用的方法,包括pow、abs、round、floor、rint、random等。

  • 平方,立方,四次方--->pow
 Math.pow(10,2);//10的平方Math.pow(10,3);//10的立方Math.pow(10,4);//10的四次方
  • 绝对值--->abs
  Math.abs(-1);//1
  • 四舍五入--->round
Math.round(1.5);//2
Math.round(-1.5);//-1
Math.round(-1.6);//-2
  • 向下取整--->floor
Math.floor(-1.1);//-2
Math.floor(-1.4);//-2
Math.floor(-1.6);//-2Math.floor(1.1);//1
Math.floor(1.4);//1
Math.floor(1.6);//1
  • 向上取整--->rint
Math.rint(-1.1);//-1
Math.rint(-1.4);//-1
Math.rint(-1.6);//-1Math.rint(1.1);//2
Math.rint(1.4);//2
Math.rint(1.6);//2
  • 生成随机数--->random
Math.random();//生成0-1的double数
(Math.random() * (5 - 0) + 0);生成0-5的double数
(Math.random() * (50 - 10) + 10);生成10-50的double数
  • 取最小值--->min
Math.min(1, 2);//1

  • 取最大值--->max
Math.max(1, 2);//2
  • 开平方跟--->sqrt
Math.sqrt(2);//1.4142135623730951
Math.sqrt(4);//2.0
  • 开立方根--->cbrt
Math.cbrt(7);//1.9129311827723892
Math.cbrt(8);//2.0
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容