Scala - 模式匹配并在匹配之前做一些事情。

发布于 2024-11-27 04:22:23 字数 242 浏览 0 评论 0原文

我想在匹配之前执行一条语句。

def test(x : Int) = x match {
      doSomethingHere always
      case 1 => println("1")
      case 2 => println("2")
    }

它必须在之前,所以我不能只匹配 _ 并在最后执行。它可以在运行 test() 之前运行,但我宁愿将其保留在函数内。

I want to execute a statement before I match.

def test(x : Int) = x match {
      doSomethingHere always
      case 1 => println("1")
      case 2 => println("2")
    }

It has to be before, so I can't just match on _ and execute at the end. It could go before I run test(), but I'd rather keep it inside the function.

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

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

发布评论

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

评论(1

孤君无依 2024-12-04 04:22:23

然后

def test(x : Int) = {
    doSomethingHere always
    x match {
      case 1 => println("1")
      case 2 => println("2")
    }
}

准确地、不带样板地表达你想要实现的目标。除了杂散的 {} 对之外,这里还有什么问题吗?

Then say

def test(x : Int) = {
    doSomethingHere always
    x match {
      case 1 => println("1")
      case 2 => println("2")
    }
}

which precisely and without boilerplate expresses what you're trying to accomplish. Is there any issue here, beyond a stray {} pair?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文