gpt4 book ai didi

scala - 如何在 Scala 中对某个范围进行模式匹配?

转载 作者:行者123 更新时间:2023-12-03 07:30:03 27 4
gpt4 key购买 nike

在 Ruby 中我可以这样写:

case n
when 0...5 then "less than five"
when 5...10 then "less than ten"
else "a lot"
end

如何在 Scala 中执行此操作?

编辑:最好我想比使用 if 做得更优雅。

最佳答案

在模式匹配内部可以用守卫来表示:

n match {
case it if 0 until 5 contains it => "less than five"
case it if 5 until 10 contains it => "less than ten"
case _ => "a lot"
}

关于scala - 如何在 Scala 中对某个范围进行模式匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3160888/

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