Program to convert Java list of characters to a Vector in Scala
A java list of characters 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 else an error will occur.
Now, lets see some examples and then discuss how it works in details.
Example:1#
// Scala program to convert Java list // 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 list of characters in Java val list = new java.util.ArrayList[Char]() // Adding characters to the list list.add( 'a' ) list.add( 'b' ) // Converting list to a Vector val vec = list.toVector // Displays vector println(vec) } } |
Output:
Vector(a, b)
Therefore, the resultant output is in same order as stated in the above list.
Example:2#
// Scala program to convert Java list // 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 list of characters in Java val list = new java.util.ArrayList[Char]() // Adding characters to the list list.add( 'c' ) list.add( 'a' ) list.add( 'd' ) // Converting list to a Vector val vec = list.toVector // Displays vector println(vec) } } |
Output:
Vector(c, a, d)
Here, the stated characters are not stated in proper order so the resultant output is also not in proper order.
Please Login to comment...