Ruby Float -@ 函数

Ruby Float -@ 函数

Float#-@() : -@()是Ruby中的一个Float类方法,用于返回其自身的值。它的工作原理是 -@a = -(a)

语法。 Float.-@()

参数。 浮动值

返回值 负自身

代码#1:-@()方法的例子

# Ruby code for Float.-@() method
  
  
# declaring float value
a = -100.7 - 10.4
  
# declaring float value
b = -100 * 2000.0
  
# declaring float value
c = -(22 + 7.1) * 4
  
# a
puts "-@a : #{-a}\n\n"
  
# b
puts "-@b : #{-b}\n\n"
  
# c
puts "-@c : #{-c}\n\n"

输出:

-@a : 111.10000000000001

-@b : 200000.0

-@c : 116.4

代码#2:-@()方法的例子

# Ruby code for Float.-@() method
  
# declaring float value
a = -56.23333333
  
# declaring float value
b = 10000.0
  
# declaring float value
c = -(22 + 7.1)
  
# NEGATIVE VALUE
puts "-@a : #{-a}\n\n"
  
puts "-@b : #{-b}\n\n"
  
puts "-@c : #{-c}\n\n"

输出:

-@a : 56.23333333

-@b : -10000.0

-@c : 29.1

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程