Open In App

Scala Int getClass() method with example

Last Updated : 30 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
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 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 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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads