Prolog-readterm
有谁知道 Prolog 中的谓词 readterm
如何与事实/数据库配合使用? 我必须使用它,但我不知道如何将其融入事实。
Does anyone know how the predicate readterm
from Prolog works with facts/database?
I gotta use that but I don't know how to fit it into facts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 SWI-Prolog 中,
read_term(-Term, +Options)
从当前输入流中读取术语,并根据读取选项列表将该术语与 Term 统一。In SWI-Prolog,
read_term(-Term, +Options)
reads a term from the current input stream and unify the term with Term, according to the read-options list.