Open In App

Program to apply foreach() method on Java Set of characters in Scala

Improve
Improve
Like Article
Like
Save
Share
Report

The method foreach() can be applied on Java set of characters in Scala by utilizing Scala’s JavaConversions object. Moreover, here we need to use JavaConversions object as foreach method is not there in Java language.
Now, lets see some examples and then discuss how it works in details.
Example:1#




// Program to apply foreach() method on 
// Java set of characters in Scala
  
// Importing Scala's JavaConversions object
import scala.collection.JavaConversions._
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating set of Char in Java
        val set = new java.util.HashSet[Char]()
          
        // Adding Characters to the set
        set.add('a')
        set.add('b')
        set.add('c')
          
        // Applying foreach method on 
        // the set and displaying
        // output
        set.foreach(println)
      
    }
}


Output:

a
b
c

Therefore, every item of the set is printed when foreach method is applied to the stated set of Characters.
Example:2#




// Program to apply foreach() method on 
// Java set of characters in Scala
  
// Importing Scala's JavaConversions object
import scala.collection.JavaConversions._
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Creating set of Char in Java
        val set = new java.util.HashSet[Char]()
          
        // Adding Char to the set
        set.add('d')
        set.add('c')
        set.add('b')
          
        // Applying foreach method on 
        // the set and displaying
        // output
        set.foreach(println)
          
    }
}


Output:

b
c
d

It is same as above example but here the elements are not stated in proper order but in Set it needs to be in proper order so the resultant output is in proper order.



Last Updated : 29 Nov, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads