Math.floor() 返回小于或等于一个给定数字的最大整数。

本文详细介绍了 Math.floor() 函数的用法,该函数用于返回小于或等于给定数字的最大整数。文章通过示例展示了如何使用 Math.floor() 进行向下取整,并提供了实现十进制调整的代码片段,包括 round10、floor10 和 ceil10 方法。此外,还概述了 Math.floor() 在不同规范版本中的定义,以及浏览器兼容性。

Math.floor() 返回小于或等于一个给定数字的最大整数。

Note:  Math.floor() === 向下取整

语法

Math.floor(x) 

参数

x

一个数字。

返回值 

一个表示小于或等于指定数字的最大整数的数字。

描述

由于 floor 是 Math 的一个静态方法,你总是应该像这样使用它 Math.floor(),而不是作为你创建的一个Math对象的一种方法(Math不是一个构造函数)。

示例

例子:使用 Math.floor

Math.floor( 45.95); 
// 45 
Math.floor( 45.05); 
// 45 
Math.floor( 4 ); 
// 4 
Math.floor(-45.05); 
// -46 
Math.floor(-45.95); 
// -46

例子:十进制调整

// Closure
(function(){

	/**
	 * Decimal adjustment of a number.
	 *
	 * @param	{String}	type	The type of adjustment.
	 * @param	{Number}	value	The number.
	 * @param	{Integer}	exp		The exponent (the 10 logarithm of the adjustment base).
	 * @returns	{Number}			The adjusted value.
	 */
	function decimalAdjust(type, value, exp) {
		// If the exp is undefined or zero...
		if (typeof exp === 'undefined' || +exp === 0) {
			return Math[type](value);
		}
		value = +value;
		exp = +exp;
		// If the value is not a number or the exp is not an integer...
		if (isNaN(value) || !(typeof exp === 'number' && exp % 1 === 0)) {
			return NaN;
		}
		// Shift
		value = value.toString().split('e');
		value = Math[type](+(value[0] + 'e' + (value[1] ? (+value[1] - exp) : -exp)));
		// Shift back
		value = value.toString().split('e');
		return +(value[0] + 'e' + (value[1] ? (+value[1] + exp) : exp));
	}

	// Decimal round
	if (!Math.round10) {
		Math.round10 = function(value, exp) {
			return decimalAdjust('round', value, exp);
		};
	}
	// Decimal floor
	if (!Math.floor10) {
		Math.floor10 = function(value, exp) {
			return decimalAdjust('floor', value, exp);
		};
	}
	// Decimal ceil
	if (!Math.ceil10) {
		Math.ceil10 = function(value, exp) {
			return decimalAdjust('ceil', value, exp);
		};
	}

})();

// Round
Math.round10(55.55, -1); // 55.6
Math.round10(55.549, -1); // 55.5
Math.round10(55, 1); // 60
Math.round10(54.9, 1); // 50
Math.round10(-55.55, -1); // -55.5
Math.round10(-55.551, -1); // -55.6
Math.round10(-55, 1); // -50
Math.round10(-55.1, 1); // -60
// Floor
Math.floor10(55.59, -1); // 55.5
Math.floor10(59, 1); // 50
Math.floor10(-55.51, -1); // -55.6
Math.floor10(-51, 1); // -60
// Ceil
Math.ceil10(55.51, -1); // 55.6
Math.ceil10(51, 1); // 60
Math.ceil10(-55.59, -1); // -55.5
Math.ceil10(-59, 1); // -50

规范

规范版本规范状态注解
ECMAScript 1st Edition. Implemented in JavaScript 1.0StandardInitial definition.
ECMAScript 5.1 (ECMA-262)
Math.floor
Standard 
ECMAScript 2015 (6th Edition, ECMA-262)
Math.floor
Standard 
ECMAScript Latest Draft (ECMA-262)
Math.floor
Draft 

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!

  • Desktop
  •  
  • Mobile
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support(Yes)(Yes)(Yes)(Yes)(Yes)

相关链接

文档标签和贡献者

 标签:  

 此页面的贡献者: mdnwebdocs-botwangyukai04xgqfrms-GitHubAlexChao

 最后编辑者: mdnwebdocs-bot, Mar 18, 2019, 4:43:31 PM

在 Java 和 JavaScript 等语言中,`Math.floor` 和 `Math.round` 是用于处理浮点数的常用方法。 ### 用法 - **Math.floor**:`Math.floor` 用于向下取整,即返回小于等于给定数字最大整数。在 Java 中,方法签名为 `Math.floor(double a)`;在 JavaScript 中可直接使用 `Math.floor(num)` ,其中 `num` 是要处理的数字 [^2][^3]。 - **Math.round**:`Math.round` 用于四舍五入,返回给定数字最接近的整数。在 Java 中,`Math.round` 有两个重载方法,`Math.round(float a)` 返回 `int` 类型,`Math.round(double a)` 返回 `long` 类型;在 JavaScript 中使用 `Math.round(num)` ,`num` 为要处理的数字 [^2]。 ### 区别 `Math.floor` 总是向下取整,而 `Math.round` 是四舍五入。例如,对于正数,`Math.floor(3.9)` 会返回 3,而 `Math.round(3.9)` 会返回 4;对于负数,`Math.floor(-3.1)` 返回 -4,`Math.round(-3.1)` 返回 -3 [^2][^4]。 ### 示例 #### Java 示例 ```java public class Main { public static void main(String[] args) { double num1 = 3.9; double num2 = -3.1; // Math.floor 示例 System.out.println("Math.floor(3.9): " + Math.floor(num1)); System.out.println("Math.floor(-3.1): " + Math.floor(num2)); // Math.round 示例 System.out.println("Math.round(3.9): " + Math.round(num1)); System.out.println("Math.round(-3.1): " + Math.round(num2)); } } ``` #### JavaScript 示例 ```javascript let num1 = 3.9; let num2 = -3.1; // Math.floor 示例 console.log("Math.floor(3.9): " + Math.floor(num1)); console.log("Math.floor(-3.1): " + Math.floor(num2)); // Math.round 示例 console.log("Math.round(3.9): " + Math.round(num1)); console.log("Math.round(-3.1): " + Math.round(num2)); ``` #### C# 示例 ```csharp using System; class Program { static void Main() { double value = 12.5; // 向下取整 int resultFloor = (int)Math.Floor(value); Console.WriteLine(resultFloor); // 四舍五入 int resultRound = (int)Math.Round(value); Console.WriteLine(resultRound); } } ```
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值