Open In App
Related Articles

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

Improve Article
Improve
Save Article
Save
Like Article
Like

A java list of floats 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 floats in Java
        val list = new java.util.ArrayList[Float]()
          
        // Adding floats to the list
        list.add(1.1f)
        list.add(2.1f)
        list.add(3.1f)
          
        // Converting list to an Indexed Sequence 
        val ind = list.toIndexedSeq
          
        // Displays Indexed Sequence
        println(ind)
      
    }
}


Output:

Vector(1.1, 2.1, 3.1)

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 floats in Java
        val list = new java.util.ArrayList[Float]()
          
        // Adding floats to the list
        list.add(9.6f)
        list.add(4.5f)
        list.add(8.3f)
          
        // Converting list to an Indexed Sequence 
        val ind = list.toIndexedSeq
          
        // Displays Indexed Sequence
        println(ind)
          
    }
}


Output:

Vector(9.6, 4.5, 8.3)

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 14 Jan, 2020
Like Article
Save Article
Similar Reads