El método self() se utiliza para devolver el mismo valor que se ha especificado.
Method Definition: (Value).selfReturn Type: It returns true the same value which has been specified.
Ejemplo 1:
Scala
// Scala program of Int self() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying self method val result = (5).self // Displays output println(result) } }
Producción:
5
Ejemplo 2:
Scala
// Scala program of Int self() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying self method val result = (10).self // Displays output println(result) } }
Producción:
10
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA