使用模式匹配求解 scala 中的某些方程

发布于 2025-01-04 16:09:48 字数 837 浏览 1 评论 0原文

我对 Scala 非常陌生,在阅读 ScalaTutorial.pdf 时第 6 节:案例类和模式匹配

我没有找到有关如何运行其示例的信息,即:

package my

abstract class Tree
case class Sum(l: Tree, r: Tree) extends Tree
case class Var(n: String) extends Tree 
case class Const(i: Int) extends Tree 

object TestTree {

  type Environment = String => Int

  def eval(t: Tree, env: Environment): Int = t match {
    case Sum(l, r) => eval(l, env) + eval(r, env)
    case Var(n) => env(n)
    case Const(v) => v
  }

  def main(args: Array[String]){

    val s : Sum = Sum(Var("x"), Const(10))
    // Then how to define a variable of type environment to pass it to the `eval` function:
    //eval(s, Environment) ??
  }
}

我不知道如何将环境传递给 eval 函数

I'm very new to Scala, and while reading the ScalaTutorial.pdf Section 6: Case classes and pattern matching

I find no information on how to run its example which is:

package my

abstract class Tree
case class Sum(l: Tree, r: Tree) extends Tree
case class Var(n: String) extends Tree 
case class Const(i: Int) extends Tree 

object TestTree {

  type Environment = String => Int

  def eval(t: Tree, env: Environment): Int = t match {
    case Sum(l, r) => eval(l, env) + eval(r, env)
    case Var(n) => env(n)
    case Const(v) => v
  }

  def main(args: Array[String]){

    val s : Sum = Sum(Var("x"), Const(10))
    // Then how to define a variable of type environment to pass it to the `eval` function:
    //eval(s, Environment) ??
  }
}

I don't know how to pass the Environment to the eval function

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

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

发布评论

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

评论(1

无人接听 2025-01-11 16:09:48
type Environment = String => Int

这表示 Environment 类型等于 String => 类型。 Int,即采用String并返回Int的函数类型。需要注意的是,在 Scala 中,map 是一种函数(也就是说 Map[K,V]K => V 的子类型)。因此,任何采用函数作为参数的函数也可以采用映射。

因此,要使用 eval,您可以向其传递 String => 类型的函数。 Int,它可能是您定义的实际函数,它接受一个字符串并返回一个 int,也可能是一个将字符串映射到整数的映射。

type Environment = String => Int

This says that the type Environment is equal to the type String => Int, i.e. the type of functions that take a String and return an Int. It should be noted that in Scala a map is a kind of function (which is to say Map[K,V] is a subtype of K => V). So any function that takes a function as an argument can also take a map instead.

So to use eval you can pass it a function of type String => Int, which might either be an actual function that you defined and that takes a string and returns an int, or a map that maps strings to integers.

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