gpt4 book ai didi

list - 如何修复模式匹配详尽警告?

转载 作者:行者123 更新时间:2023-12-04 21:57:14 27 4
gpt4 key购买 nike

一些Scala代码:

val list = List(Some("aaa"), Some("bbb"), None, ...)

list.filter(_!=None).map {
case Some(x) => x + "!!!"
// I don't want to handle `None` case since they are not possible
// case None
}

当我运行它时,编译器提示:
<console>:9: warning: match may not be exhaustive.
It would fail on the following input: None
list.filter(_!=None).map {
^
res0: List[String] = List(aaa!!!, bbb!!!)

如何在不提供 case None 的情况下修复该警告线?

最佳答案

如果您正在使用 map之后 filter ,您可以使用 collect .

list collect { case Some(x) => x + "!!!" } 

关于list - 如何修复模式匹配详尽警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24751748/

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