标签:style blog http os java 使用 io strong ar
还是去年的时候有同事随口问我在javascript中怎么把小数转换成整数(去掉小数位),当时我回答直接用parseInt。其实那时候也没有仔细考虑这个问题还有没有其他的方法。不过最近在看别人一篇博文里的代码时,发现他这么写代码
var random = (Math.random() * 2) | 0; // get random 0 or 1
var integer = ~~decimal; // 4 = ~~4.123
var integer = decimal >= 0 ? Math.floor(decimal) : Math.ceil(decimal);
标签:style blog http os java 使用 io strong ar
原文地址:http://www.cnblogs.com/chrissitang/p/3938289.html