Open In App

Scala Int self() method with example

The self() method is utilized to return the same value which has been specified.
 

Method Definition: (Value).selfReturn 
Type: It returns true the same value which has been specified.

Example 1: 






// 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)
       
    }
}  

Output: 
5

 

Example 2: 






// 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)
       
    }
}  

Output:
10

Article Tags :