带有示例的 Scala Float +(x: String) 方法
+(x:String)方法用于返回指定的浮点值和字符串值的和。在这里,字符串被添加到指定浮点值的末尾。
Method Definition: (Float_Value).+(String_Value)
Return Type: It returns the sum of the specified float value and string value.
示例 #1:
// Scala program of Float +(x: String)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying +(x: String) function
val result = (6.0).+("GFG")
// Displays output
println(result)
}
}
输出:
6.0GFG
示例 #2:
// Scala program of Float +(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying +(x: Byte) function
val result = (100.0).+("Geeks")
// Displays output
println(result)
}
}
输出:
100.0Geeks