Open In App

Scala Queue sum() method with example

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

The sum() method is utilized to return the sum of all the elements of the queue.

Method Definition: def sum: A

Return Type: It returns the sum of all the elements of the queue.

Example #1:




// Scala program of sum() 
// method 
  
// Import Queue  
import scala.collection.mutable._
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
      
        // Creating a queue 
        val q1 = Queue(1, 2, 3, 4, 5
          
        // Print the queue
        println(q1)
          
        // Applying sum method 
        val result = q1.sum
          
        // Display output
        print("Sum of all elements of the queue: " + result)
          
    


Output:

Queue(1, 2, 3, 4, 5)
Sum of all elements of the queue: 15

Example #2:




// Scala program of sum() 
// method 
  
// Import Queue  
import scala.collection.mutable._
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
      
        // Creating a queue 
        val q1 = Queue(5, 2, 13, 7, 1
          
        // Print the queue
        println(q1)
          
        // Applying sum method 
        val result = q1.sum
          
        // Display output
        print("Sum of all elements of the queue: " + result)
          
    


Output:

Queue(5, 2, 13, 7, 1)
Sum of all elements of the queue: 28


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads