编写一个编程语言解释器
可能的重复:
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在谈论一种功能齐全的编程语言,那么这绝不是微不足道的工作量,但当然可以使用 解析器< /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
看看 boost.spirit - 这是一个很好的起点。
(特别是 - 编写解析器 文档部分)
Have a look at boost.spirit - its a good place to start.
(in particular - the writing parsers section of the docs)