随笔分类 - 解释器
摘要:In computer science, a symbol table is a data structure used by a language translator such as a compiler or interpreter, where each identifier (a.k.a.
阅读全文
摘要:http://blog.csdn.net/xuqiaobo/article/details/52534947 解释器和编译器两者各有优势:当程序需要迅速启动和执行的时候,解释器可以首先发挥作用,省去编译的时间,立即执行。在程序运行后,随着时间的推移,编译器逐渐发挥作用,把越来越多的代码编译成本地代码
阅读全文