在 Java 或其他 OO/非函数式语言中表示复杂真值表的最佳方式是什么?

发布于 2024-10-22 06:44:29 字数 158 浏览 5 评论 0原文

我正在实现许多复杂的业务逻辑,这些逻辑以真值表/业务规则矩阵表示。过去,实施这些规则通常会导致大量 if...else 语句。我不禁认为函数式语言有助于更优雅地表达这些规则。

如何让 Java 的实现变得不那么痛苦?

这样做时有哪些有用的模式?

I am implementing a lot of complicated business logic that is represented in a truth table/business rules matrix. In the past, implementing these rules has often resulted in a lot of if...else statements. I can't help but think that a functional language lends itself to expressing these rules more elegantly.

How can I make implementation in Java less painful?

What are some helpful patterns when doing this?

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

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

发布评论

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

评论(1

肥爪爪 2024-10-29 06:44:29

使用业务规则引擎,而不是直接用 Java 编写规则。对于这些事情,存在一个标准 Java API

或者,使用支持模式匹配的语言编写规则,以减少条件数量。我想到了 Scala

Use a business rules engine instead of writing the rules directly in Java. There exists a standard Java API for these things.

Alternatively, write your rules in a language that supports pattern matching to reduce the number of conditionals. Scala comes to mind.

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