Open In App

Scala Set max() method with example

Last Updated : 18 Oct, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The max() method is utilized to find the largest element of all the elements in the set.

Method Definition: def max: A

Return Type: It returns the largest of all the elements in the set.

Example #1:




// Scala program of max() 
// method 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a set 
        val s1 = Set(5, 11, 23, 72, 14
          
        // Applying max method 
        val result = s1.max
          
        // Display output
        println(result)
    


Output:

72

Example #2:




// Scala program of max() 
// method 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
        // Creating a set 
        val s1 = Set(5, 11, 23, 72, 14, 21, 118
          
        // Applying max method 
        val result = s1.max
          
        // Display output
        println(result)
    


Output:

118


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

Similar Reads