Program to apply foreach() method on Java Set of integers in Scala
The method foreach() can be applied on Java set of integers in Scala by utilizing Scala’s JavaConversions object. Moreover, here you 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 integers 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 int in Java val set = new java.util.HashSet[Int]() // Adding integers to the set set.add( 7 ) set.add( 8 ) set.add( 9 ) // Applying foreach method on // the set and displaying // output set.foreach(println) } } |
Output:
7 8 9
Therefore, every item of the set is printed when foreach method is applied to the stated set of integers.
Example:2#
// Program to apply foreach() method on // Java set of integers 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 int in Java val set = new java.util.HashSet[Int]() // Adding integers to the set set.add( 9 ) set.add( 5 ) set.add( 1 ) // Applying foreach method on // the set and displaying // output set.foreach(println) } } |
Output:
1 5 9
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.
Please Login to comment...