gpt4 book ai didi

Scala:对于理解编译错误(新手问题)

转载 作者:行者123 更新时间:2023-12-01 01:28:09 24 4
gpt4 key购买 nike

我收到以下代码的类型不匹配编译错误:

  case class MyClass(name: String)
def getMyClass(id : String) = {
//For now ignore the id field
Some(Seq(MyClass("test1"), MyClass("test2"), MyClass("test3"), MyClass("test4"), MyClass("test5")))
}

def getHeader() = {
Map(
"n" -> List(Map("s"->"t"), Map("s"->"t"), Map("s"->"t")),
"o" -> List(Map("s"->"t"), Map("s"->"t"), Map("s"->"t")),
"id" -> "12345"
)
}
def castToString(any: Option[Any]): Option[String] = {
any match {
case Some(value: String) => Some(value)
case _ => None
}
}

val h = getHeader()

for{
id <- castToString(h.get("id")) //I hate I have to do this but the map is a Map[String,Any]
m <- getMyClass(id) //This strips the Some from the Some(Seq[MyClass])
item <- m //XXXXXXXX Compile errors
oList <- h.get("o")
nList <- h.get("n")

} yield {
(oList, nList, item)
}

错误是:
C:\temp\s.scala:28: error: type mismatch;
found : Seq[(java.lang.Object, java.lang.Object, this.MyClass)]
required: Option[?]
item <- m
^

但是 m 是 Seq[MyClass] 类型。我正在尝试遍历列表并设置项目

最佳答案

你不能以这种方式混合容器类型,特别是给定 Option.flatMap 的签名(这个表达式被去除了糖 - 请参阅 pst 的评论)。但是,有一个非常简单的解决方案:

for{
id <- castToString(h.get("id")).toSeq
m <- getMyClass(id).toSeq
oList <- h.get("o")
nList <- h.get("n")
} yield {
(oList, nList, item)
}

关于Scala:对于理解编译错误(新手问题),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6459709/

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