Open In App

Program to convert Java list of Shorts to an Iterable in Scala

Improve
Improve
Like Article
Like
Save
Share
Report

A java list of Shorts can be converted to an Iterable in Scala by utilizing toIterable 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 an Iterable 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 Shorts in Java
        val list = new java.util.ArrayList[Short]()
          
        // Adding Shorts to the list
        list.add(843)
        list.add(911)
        list.add(1000)
          
        // Converting list to an Iterable
        val iterab= list.toIterable
          
        // Displays output
        println(iterab)
      
    }
}


Output:

Buffer(843, 911, 1000)

Example:2#




// Scala program to convert Java list 
// to an Iterable 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 Shorts in Java
        val list = new java.util.ArrayList[Short]()
          
        // Adding Shorts to the list
        list.add(-111)
        list.add(-123)
        list.add(-1000)
          
        // Converting list to an Iterable 
        val iterab= list.toIterable
          
        // Displays output
        println(iterab)
      
    }
}


Output:

Buffer(-111, -123, -1000)


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