浮点数arg()是一个浮点类方法,它对浮点值起作用,并且对正值和负值都起作用。
用法:float.arg()
参数:要检查的浮点值
返回:返回0表示正值。否则pi(3.141592653589793)
范例1:
# Ruby code for arg() method
# Initializing values
a = -100.7 - 10.4
b = -100 * 2000.0
c = (22 + 7.1) * 4
# Printing result
puts "arg value of a:#{a.arg}\n\n"
puts "arg value of b:#{b.arg}\n\n"
puts "arg value of c:#{c.arg}\n\n"
输出:
arg value of a:3.141592653589793 arg value of b:3.141592653589793 arg value of c:0
范例2:
# Ruby code for arg() method
# Initializing value
a = -56.23333333
b = 10000.0
c = -(22 + 7.1)
# Printing result
puts "arg value of a:#{a.arg}\n\n"
puts "arg value of b:#{b.arg}\n\n"
puts "arg value of c:#{c.arg}\n\n"
输出:
arg value of a:3.141592653589793 arg value of b:0 arg value of c:3.141592653589793
相关用法
- Ruby Float eql()用法及代码示例
- Ruby Float zero?()用法及代码示例
- Ruby Float quo()用法及代码示例
- Ruby Float nan?()用法及代码示例
- Ruby Float next_float()用法及代码示例
- Ruby Float numerator()用法及代码示例
- Ruby Float divmod()用法及代码示例
- Ruby Float angle()用法及代码示例
- Ruby Float rationalize()用法及代码示例
- Ruby Float absolute()用法及代码示例
- Ruby Float phase()用法及代码示例
- Ruby Float positive()用法及代码示例
- Ruby Float prev_float()用法及代码示例
- Ruby Float fdiv()用法及代码示例
- Ruby Float denominator()用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby Float arg() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。