Java 表达式求值

发布于 2024-10-29 22:11:39 字数 319 浏览 0 评论 0原文

我正在尝试开发一个解析器来解析简单的逻辑关系表达式,其中包括“(”,“)”,“>”,“<”,“,”作为标记。一个例子可能是:

a < (b > c > (x, y, z))

从上面的表达式,我可以推断:

  1. a 依赖 b
  2. b 是 c 的前提
  3. x、y 和 z 独立依赖于
  4. c a 和 c 之间没有关系
  5. a 和 x 之间没有关系, y 和 z

有没有工具支持这种解析?

谢谢, 绿色的

I am trying to develop a parser to parse simple logical relationship expressions, which includes "(", ")", ">", "<", "," as token. An example might be:

a < (b > c > (x, y, z))

From the above expression, I would deduct that:

  1. a relies on b
  2. b is a precondition of c
  3. x, y and z depend on c independently
  4. there is no relationship between a and c
  5. there is no relationship between a, x, y and z

Is there any tool to support this kind of parsing?

thanks,
Green

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

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

发布评论

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

评论(2

夜雨飘雪 2024-11-05 22:11:39

您可以尝试 JavaCC .. 习惯它有点棘手,但是一旦您掌握了它,您就可以轻松构建这样的解析器。您可以按照此教程开始。还可以使用 eclipse 插件,这有助于使用它来生成所需的文件等。

You can try JavaCC .. It is a bit tricky to get used to it but once you get it you can easily build such parsers. You can start by following this tutorial. An eclipse plugin is also available which facilitates its use to generate the required files and so on.

红墙和绿瓦 2024-11-05 22:11:39

我猜,最著名的此类工具是 ANTLR

The most famous tool for such things, I guess, is ANTLR.

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