Open In App
Related Articles

Program to convert Java list of floats to a Vector in Scala

Improve Article
Improve
Save Article
Save
Like Article
Like

A java list of floats 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 floats in Java
        val list = new java.util.ArrayList[Float]()
          
        // Adding floats to the list
        list.add(1.4f)
        list.add(5.4f)
          
        // Converting list to a Vector 
        val vec= list.toVector
          
        // Displays vector
        println(vec)
      
    }
}


Output:

Vector(1.4, 5.4)

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 floats in Java
        val list = new java.util.ArrayList[Float]()
          
        // Adding floats to the list
        list.add(5.3f)
        list.add(11.4f)
        list.add(10.1f)
          
        // Converting list to a Vector 
        val vec= list.toVector
          
        // Displays vector
        println(vec)
          
    }
}


Output:

Vector(5.3, 11.4, 10.1)

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
Previous
Next
Similar Reads