Open In App

Scala TreeSet max() method with example

Last Updated : 11 Nov, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The max() method is utilized to return the largest method of the TreeSet.

Method Definition: def max: A

Return Type: It returns the largest element of the TreeSet.

Example #1:




// Scala program of max() 
// method 
  
// Import TreeSet
import scala.collection.mutable._
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
      
        // Creating TreeSet
        val q1 = TreeSet(1, 2, 3, 4, 5)  
            
        // Print the TreeSet 
        println(q1
          
        // Applying max method  
        val result = q1.max  
            
        // Displays output  
        print("Largest element in the TreeSet: " + result) 
          
    


Output:

TreeSet(1, 2, 3, 4, 5)
Largest element in the TreeSet: 5

Example #2:




// Scala program of max() 
// method 
  
// Import TreeSet
import scala.collection.mutable._
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
      
        // Creating TreeSet
        val q1 = TreeSet("u", "a", "i", "o", "e")  
            
        // Print the TreeSet 
        println(q1
          
        // Applying max method  
        val result = q1.max  
            
        // Displays output  
        print("Largest element in the TreeSet: " + result) 
          
    


Output:

TreeSet(a, e, i, o, u)
Largest element in the TreeSet: u


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

Similar Reads