Open In App

Scala Int getClass() method with example

Last Updated : 30 Jan, 2020
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
The getClass() method is utilized to return the class of the given int number.
Method Definition: (Number).getClass Return Type: It returns the class of the given number.
Example #1: Scala
// Scala program of Int getClass()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying getClass method
        val result = (2).getClass
        
        // Displays output
        println(result)
    
    }
} 
Output:
int
Example #2: Scala
// Scala program of Int getClass()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying getClass method
        val result = (27987696).getClass
        
        // Displays output
        println(result)
    
    }
} 
Output:
int

Article Tags :

Similar Reads