当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Numeric coerce()用法及代码示例


coerce()是Ruby中的内置方法,它返回一个包含两个数字的数组,该数组包含两个浮点数。

用法: num1.coerce(num2)

参数:该函数需要一个数字和一个n位数字,并保留十进制数字的精度。如果未传递n位数字,则将0设为默认值。


返回值:通过保持小数部分的n位数字的精度,返回大于或等于给定数字的最小数字。

例子1

# Ruby program for coerce() method in Matrix 
  
# Initialize a number  
num1 = 1.7 
num2 = 1.2 
  
# Function used 
arr = num1.coerce(num2) 
  
# Prints coerce() of num 
puts arr

输出

1.7
1.2

例子2

# Ruby program for ceil() method in Matrix 
  
# Initialize a number  
num1 = 2.8 
num2 = 0.7 
  
# Function used 
arr = num1.coerce(num2) 
  
# Prints coerce() of num 
puts arr

输出

0.7
2.8


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Numeric coerce() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。