Open In App

Program to convert Java list of doubles to an Indexed Sequence in Scala

Improve
Improve
Like Article
Like
Save
Share
Report

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)


Last Updated : 14 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads