在 Java 或其他 OO/非函数式语言中表示复杂真值表的最佳方式是什么?
我正在实现许多复杂的业务逻辑,这些逻辑以真值表/业务规则矩阵表示。过去,实施这些规则通常会导致大量 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用业务规则引擎,而不是直接用 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.