function _int(value) {
    // Math.floor() 返回一个小于或等于该给定数字value的最大整数
    return Math.floor(value);
}