将Java浮点数集转换为 Scala 中的索引序列的程序
通过使用 Scala 中Java的toIndexedSeq方法,可以将一组Java浮点数转换为 Scala 中的索引序列。在这里,您需要导入 Scala 的 JavaConversions 对象以使此转换工作,否则将发生错误。
现在,让我们看一些例子,然后详细讨论它是如何工作的。
示例:1#
// Scala program to convert Java set
// 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 set of floats in Java
val set = new java.util.HashSet[Float]()
// Adding floats to the set
set.add(3.1f)
set.add(2.1f)
set.add(5.1f)
// Converting set to an Indexed Sequence
val ind = set.toIndexedSeq
// Displays Indexed Sequence
println(ind)
}
}
输出:
Vector(3.1, 2.1, 5.1)
示例:2#
// Scala program to convert Java set
// 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 set of floats in Java
val set = new java.util.HashSet[Float]()
// Adding floats to the set
set.add(3.6f)
set.add(9.2f)
set.add(1.8f)
// Converting set to an Indexed Sequence
val ind = set.toIndexedSeq
// Displays Indexed Sequence
println(ind)
}
}
输出:
Vector(3.6, 9.2, 1.8)