Scala中集合类型与java中集合类型转换

Posted 胖子学习天地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Scala中集合类型与java中集合类型转换相关的知识,希望对你有一定的参考价值。

以下为java.util.List  转为 scala 中 Seq的方法:

注意需要导入包 import collection.JavaConverters._

    //根据topic获取partition信息
    def getPartitionInfo(consumer: KafkaConsumer[_, _], topic: String): Seq[PartitionInfo] = {
        import collection.JavaConverters._
        val partList: Seq[PartitionInfo] = consumer.partitionsFor(topic).asScala
        partList
    }

 

以上是关于Scala中集合类型与java中集合类型转换的主要内容,如果未能解决你的问题,请参考以下文章

JS中集合对象(ArrayMapSet)及类数组对象的使用与对比

Java中集合概念

Hive中集合类型

如何对Scala中集合进行排序?

Spring中集合类型属性注入

java中集合中自定义对象向下转型问题