迭代元组

发布于 2024-10-21 20:25:43 字数 427 浏览 1 评论 0原文

我需要实现一个通用方法,它接受一个元组并返回一个 Map 示例:

val tuple=((1,2),(("A","B"),("C",3)),4)

我一直在尝试将此元组分解为列表:

val list=tuple.productIterator.toList
Scala>list: List[Any] = List((1,2), ((A,B),(C,3)), 4)

但这种方式返回 List[Any] 。

我现在正在尝试找出如何迭代以下元组,例如:

((1,2),(("A","B"),("C",3)),4)

为了循环每个元素 1,2,“A”,B”,...等。我该怎么做?元组迭代

I need to implement a generic method that takes a tuple and returns a Map
Example :

val tuple=((1,2),(("A","B"),("C",3)),4)

I have been trying to break this tuple into a list :

val list=tuple.productIterator.toList
Scala>list: List[Any] = List((1,2), ((A,B),(C,3)), 4)

But this way returns List[Any] .

I am trying now to find out how to iterate over the following tuple ,for example :

((1,2),(("A","B"),("C",3)),4)

in order to loop over each element 1,2,"A",B",...etc. How could I do this kind of iteration over the tuple

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

叹倦 2024-10-28 20:25:43

又怎样呢? :

def flatProduct(t: Product): Iterator[Any] = t.productIterator.flatMap {
  case p: Product => flatProduct(p)
  case x => Iterator(x)
}
val tuple = ((1,2),(("A","B"),("C",3)),4)
flatProduct(tuple).mkString(",") // 1,2,A,B,C,3,4

好的,Any 问题仍然存在。至少这是由于 productIterator 的返回类型造成的。

What about? :

def flatProduct(t: Product): Iterator[Any] = t.productIterator.flatMap {
  case p: Product => flatProduct(p)
  case x => Iterator(x)
}
val tuple = ((1,2),(("A","B"),("C",3)),4)
flatProduct(tuple).mkString(",") // 1,2,A,B,C,3,4

Ok, the Any-problem remains. At least that´s due to the return type of productIterator.

无敌元气妹 2024-10-28 20:25:43

使用 Shapeless 数据结构(例如 HList)代替元组。您可以进行通用处理,并且也不会丢失类型信息。

唯一的问题是文档不是很全面。

Instead of tuples, use Shapeless data structures like HList. You can have generic processing, and also don't lose type information.

The only problem is that documentation isn't very comprehensive.

九厘米的零° 2024-10-28 20:25:43
tuple.productIterator map { 
   case (a,b) => println(a,b) 
   case (a) => println(a)
}
tuple.productIterator map { 
   case (a,b) => println(a,b) 
   case (a) => println(a)
}
不必在意 2024-10-28 20:25:43

这对我有用。 transform 是一个由数据帧组成的元组

def apply_function(a: DataFrame) = a.write.format("parquet").save("..." + a + ".parquet")
transform.productIterator.map(_.asInstanceOf[DataFrame]).foreach(a => apply_function(a))

This works for me. tranform is a tuple consists of dataframes

def apply_function(a: DataFrame) = a.write.format("parquet").save("..." + a + ".parquet")
transform.productIterator.map(_.asInstanceOf[DataFrame]).foreach(a => apply_function(a))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文