网站大量收购闲置独家精品文档,联系QQ:2885784924

从Java走进Scala构建计算器DSL.doc

  1. 1、本文档共15页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
从Java走进Scala:构建计算器DSL [大] [中] [小]  本文继续探索 Scala 的语言和库支持,我们将改造一下计算器 DSL 并最终 “完成它”。DSL 本身有点简单 — 一个简单的计算器,目前为止只支持 4 个基本数学运算符。但要记住,我们的目标是创建一些可扩展的、灵活的对象,并且以后可以轻松增强它们以支持新的功能。 继续上次的讨论…… 说明一下,目前我们的 DSL 有点零乱。我们有一个抽象语法树(Abstract Syntax Tree ),它由大量 case 类组成…… 清单 1. 后端(AST) 1. package com.tedneward.calcdsl 2. { 3. // ... 4. 5. private[calcdsl] abstract class Expr 6. private[calcdsl] case class Variable(name : String) extends Expr 7. private[calcdsl] case class Number(value : Double) extends Expr 8. private[calcdsl] case class UnaryOp(operator : String, arg : Expr) extends Expr 9. private[calcdsl] case class BinaryOp(operator : String, left : Expr, right : Expr) 10. extends Expr 11. 12. } ……对此我们可以提供类似解释器的行为,它能最大限度地简化数学表达式…… 清单 2. 后端(解释器) 1. package com.tedneward.calcdsl 2. { 3. // ... 4. 5. object Calc 6. { 7. def simplify(e: Expr): Expr = { 8. // first simplify the subexpressions 9. val simpSubs = e match { 10. // Ask each side to simplify 11. case BinaryOp(op, left, right) = BinaryOp(op, simplify(left), simplify(right)) 12. // Ask the operand to simplify 13. case UnaryOp(op, operand) = UnaryOp(op, simplify(operand)) 14. // Anything else doesnt have complexity (no operands to simplify) 15. case _ = e 16. } 17. 18. // now simplify at the top, assuming the components are already simplified 19. def simplifyTop(x: Expr) = x match { 20. // Double negation returns the original value 21. case UnaryOp(-, UnaryOp(-, x)) = x 22. 23. // Positive returns the original value 24. case UnaryOp(+, x) = x 25. 26. // Multiplying x by 1 returns the original value 27. case BinaryOp(*, x, Number(1)) = x 28. 29. // Multiplying 1 by x returns the original value 30. case BinaryOp(*, Number(1), x) = x 31. 32. // Multiplying x b

文档评论(0)

dashewan + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档