gpt4 book ai didi

string - Scala 将字符串列表转换为多个变量

转载 作者:行者123 更新时间:2023-12-02 15:28:06 25 4
gpt4 key购买 nike

我正在尝试将字符串列表转换为多个变量,以便我可以将属性分配给列表的内容。

我的代码:

val list = List("a", "b", "c", "d", "e", "f")
val attributes = Attributes(#SomeAwesomeScalaCode#)

case class Attributes(input:(String, String, String, String, String, String)) {
val a, b, c, d, e, f = input
}

最佳答案

你可以使用模式匹配:

  val List(a, b, c, d) = List("1", "2", "3", "4")

在元组的情况下,只需在 val 声明周围添加大括号,如下所示:

  case class Attributes(input:(String, String, String, String, String, String)) {
val (a, b, c, d, e, f) = input
}

关于string - Scala 将字符串列表转换为多个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29365656/

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