带有示例的 Scala Char -(x: Double) 方法
-(x:Double)方法用于查找所述字符值与 Double 类型的 'x' 的差异。
Method Definition: def -(x: Double): Double
Return Type: It returns Double.
示例:1#
// Scala program of -(x: Double)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying -(x: Double) method
val result = 'A'.-(11.6574)
// Displays output
println(result)
}
}
输出:
53.3426
示例:2#
// Scala program of -(x: Double)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying -(x: Double) method
val result = 'D'.-(19.6578)
// Displays output
println(result)
}
}
输出:
48.3422