Program to convert Java list of doubles to an Indexed Sequence in Scala
A java list of doubles can be converted to an Indexed Sequence in Scala by utilizing toIndexedSeq method of Java in Scala. Here, you 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 an Indexed Sequence 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 doubles in Java val list = new java.util.ArrayList[Double]() // Adding doubles to the list list.add( 1.43 ) list.add( 2.23 ) list.add( 3.45 ) // Converting list to an Indexed Sequence val ind = list.toIndexedSeq // Displays Indexed Sequence println(ind) } } |
Output:
Vector(1.43, 2.23, 3.45)
Example:2#
// Scala program to convert Java list // to an Indexed Sequence 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 doubles in Java val list = new java.util.ArrayList[Double]() // Adding doubles to the list list.add( 9.44 ) list.add( 4.44 ) list.add( 8.44 ) // Converting list to an Indexed Sequence val ind = list.toIndexedSeq // Displays Indexed Sequence println(ind) } } |
Output:
Vector(9.44, 4.44, 8.44)
Please Login to comment...