编写一个编程语言解释器

发布于 2024-11-25 03:12:12 字数 285 浏览 2 评论 0原文

可能的重复:
在 C/C++ 中实现解释器所需的参考

如何我编写了一个编程语言解释器,例如 PHP 的工作原理,但我不是在谈论编译器,有没有任何简单的示例可以让我开始编写编程语言解释器?

Possible Duplicate:
References Needed for Implementing an Interpreter in C/C++

How do I write a programming language interpreter such as how PHP works, im not talking about compilers though, are there any simple examples that can get me started writing a programming language interpreter?

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

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

发布评论

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

评论(2

酒绊 2024-12-02 03:12:13

如果您正在谈论一种功能齐全的编程语言,那么这绝不是微不足道的工作量,但当然可以使用 解析器< /a> 和 词法分析器 例如 flex

By no means a trivial amount of work if you are talking about a full featured programming language but of course doable with parsers and lexical analyzer such as flex

调妓 2024-12-02 03:12:12

看看 boost.spirit - 这是一个很好的起点。
(特别是 - 编写解析器 文档部分)

Have a look at boost.spirit - its a good place to start.
(in particular - the writing parsers section of the docs)

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