Program to convert Java Set of floats to Sequence in Scala
A java Set of floats can be converted to a Sequence in Scala by utilizing toSeq method of Java in Scala. Here, we need to import Scala’s JavaConversions object in order to make this conversions work.
Now, lets see some examples and then discuss how it works in details.
Example:1#
// Scala program to convert Java set // to Sequence in Scala // Importing Scala's JavaConversions object import scala.collection.JavaConversions. _ // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating set of floats in Java val set = new java.util.HashSet[Float]() // Adding floats to the set set.add( 1.2 f) set.add( 3.2 f) set.add( 8.2 f) // Converting set to Sequence val seq = set.toSeq // Displays Sequence println(seq) } } |
Output:
ArrayBuffer(8.2, 3.2, 1.2)
Example:2#
// Scala program to convert Java set // to Sequence in Scala // Importing Scala's JavaConversions object import scala.collection.JavaConversions. _ // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating set of floats in Java val set = new java.util.HashSet[Float]() // Adding floats to the set set.add( 2.4 f) set.add( 2.6 f) set.add( 2.1 f) // Converting set to Sequence val seq = set.toSeq // Displays Sequence println(seq) } } |
Output:
ArrayBuffer(2.6, 2.1, 2.4)
Please Login to comment...