Prolog - 变量作为运算符

发布于 2024-12-07 16:28:13 字数 127 浏览 0 评论 0原文

我有一个运算符存储在变量 Op 中,两个整数存储在 X 和 Y 中。现在,我想做类似 (Z is X Op Y) 的操作,但这种语法似乎不正确。

有谁知道 Prolog 中是否有办法做到这一点?

感谢您的回答

I have an operator stored in a variable Op and two integers are stored in X and Y. Now, I want to do something like (Z is X Op Y), but this syntax seems not to be correct.

Does anybody know if there is a way to do this in Prolog?

Thanks for your answers

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

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

发布评论

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

评论(2

御弟哥哥 2024-12-14 16:28:13

您可以通过使用 =.. 运算符构建谓词来完成此操作。

尝试一下:

compute(X,Y,Op,Z) :-
   Eq=..[Op, X, Y],
   Z is Eq.

运算符实际上就像任何其他函子一样。

you can do it by building the predicate using the =.. operator.

try it like:

compute(X,Y,Op,Z) :-
   Eq=..[Op, X, Y],
   Z is Eq.

An operator is really just like any other functor.

站稳脚跟 2024-12-14 16:28:13

您可以模仿效果:

operator(Z,X,plus,Y):-Z is X + Y.  
operator(Z,X,times,Y):-Z is X * Y.

我在 ideone.com 上针对 SWI-Prolog 尝试了以下方法:

OP=times, operator(Z,3,OP,8).

我得到:

OP = times,
Z = 24.

You can mimic the effect:

operator(Z,X,plus,Y):-Z is X + Y.  
operator(Z,X,times,Y):-Z is X * Y.

I tried this on ideone.com for SWI-Prolog with:

OP=times, operator(Z,3,OP,8).

And I got:

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