Program to convert Java Set to a Vector in Scala
A java Set can be converted to a Vector in Scala by utilizing toVector method of Java in Scala. Here, we need to import Scala’s JavaConversions object in order to make this conversions work.
Now, lets see some examples and then discuss how it works in details.
Example:1#
// Scala program to convert Java set // to a Vector in Scala // Importing Scala's JavaConversions object import scala.collection.JavaConversions. _ // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating set in Java val set = new java.util.HashSet[Int]() // Adding integers to the set set.add( 9 ) set.add( 10 ) set.add( 11 ) // Converting set to a vector val vec = set.toVector // Displays output println(vec) } } |
Output:
Vector(9, 10, 11)
Therefore, a Vector of integers is returned. Here, firstly a set is created where, integer elements are added to it utilizing add method. After that toVector method is utilized in order to convert the stated set to a Vector.
Example:2#
// Scala program to convert Java set // to a Vector in Scala // Importing Scala's JavaConversions object import scala.collection.JavaConversions. _ // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating set in Java val set = new java.util.HashSet[Int]() // Adding integers to the set set.add( 8 ) set.add( 7 ) set.add( 9 ) // Converting set to a vector val vec = set.toVector // Displays output println(vec) } } |
Output:
Vector(7, 8, 9)
It is same as above example but here the elements of the set are not present in a proper order. But the Vector returned is in proper order.
Please Login to comment...