java
a1185375204
这个作者很懒,什么都没留下…
展开
-
System.currentTimeMillis() uptimeMillis elapsedRealtime 区别 .
System.currentTimeMills()产生一个当前的毫秒数(这个毫秒数这个毫秒数是自1970年1月1日起的毫秒数)。这是系统时间,可以被系统设置修改。 uptimeMillis自开机后经过的时间,不包括深度睡眠的时间。 elapsedRealtime自开机后经过的时间,包括深度睡眠的时间。转载 2016-02-15 13:23:58 · 572 阅读 · 0 评论 -
关于java中的Math.round()方法floor,ceil方法
round是四舍五入,即小数点后面的值>=0.5,则返回值+1,否则只返回整数部分。注意负5是要舍去的 eg.Math.round(1.8)=2;Math.round(1.2)=1;Math.round(-1.8)=1 floor求一个最接近它的整数,它的值小于或等于这个浮点数。即向下取正 eg.Math.floor(0.60)=0.0;Math.floor(0.30)=0.0;Math.f原创 2016-02-17 11:56:14 · 558 阅读 · 0 评论