gpt4 book ai didi

scala - 如何在scala中将List [Any]转换为List(Int,Int)?

转载 作者:行者123 更新时间:2023-12-04 15:53:34 26 4
gpt4 key购买 nike

我有List[Any]的值

List((0,0), (1,1), (1,3), (2,2), (3,1))


我想将其转换为

List[(Int,Int)]


我怎样才能做到这一点?

最佳答案

如果您知道每个成员的类型都是(Int,Int),则只需使用asInstanceOf

val l:List[Any] = List((0,0), (1,1), (1,3), (2,2), (3,1))

l.map(_.asInstanceOf[(Int, Int)])

关于scala - 如何在scala中将List [Any]转换为List(Int,Int)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32520252/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com