El método +(x: String) se usa para encontrar la suma del doble especificado y el tipo de string ‘x’ dado en el argumento.
Sintaxis: def +(x: String): Doble
Devoluciones: Devuelve la suma del doble especificado y la string dada tipo ‘x’.
Ejemplo 1:
// Scala program of +(x: String) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying +(x: String) method val result = 1.3943245623.+("Geeks") // Displays output println(result) } }
Producción:
1.3943245623Geeks
Ejemplo 2:
// Scala program of +(x: String) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying +(x: String) method val result = 2.394324562334.+("gfg") // Displays output println(result) } }
Producción:
2.394324562334gfg
Publicación traducida automáticamente
Artículo escrito por vaibhav_coder_gfg y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA