解释程序,interpreter
1)interpreter[英][?n't?:pr?t?(r)][美][?n't?pr?t?]解释程序
1.Quantum assembler and interpreter of NDQJava processing system;NDQJava语言处理系统量子汇编及解释程序
2.This paper represents a inflenible transformation from DS to Interpreter.本文给出了DS到解释程序(INTERPETER)的机械转换方法,从而将语言的形式化定义与机器实现有机地结合起来,本文的工作是在面向语义的软件自动生成领域的进一步探索。
3.In this paper, the interpreter system of the Soft-PLC is researched and discussed.主要研究讨论了软PLC的运行解释系统,在结合三菱PLC指令的基础上,分析解释了一个软PLC指令表解释程序实现过程。
英文短句/例句

1.2.2 Compilers and interpreters2.2 编译程序和解释程序
2.compiler-interpreter system编译程序-解释程序系统
3.interpreter oriented instruction面向解释程序的指令
4.To run Java programs, a computer must have a Java interpreter.要运行Java程序,计算机必须配备Java解释程序
5.the compiler or interpreter usually spots them.编译程序或解释程序通常能发现这些错误,
6.A program or a group of programs that is helpful to write translator programs ( i. e., compilers, interpreters, assemblers ).有助于编写翻译程序(即编译程序、解释程序、汇编程序)的一种程序或一组程序。
7.interpreter used in code generatio代码生成中使用的解释程序
8.An option is using an interpreter.还有一种选择是采用解释程序
9.Analyzing the Boundary of the Legislative Interpretation Procedure s Content and Scope;立法解释程序内容与范围之界定探析
10.On the Principle of Constitutionality Presumption in the Procedure of Interpreting Constitution;论宪法解释程序中的合宪性推定原则
11.Significance,Strategies and Framework of the Procedure Law of Constitutional Interpretation《宪法解释程序法》的意义、思路与框架
12.for example, a Pascal source program is meaningless to a COBOL compiler or a BASIC interpreter.例如,PASCAL源程序对COBOL编译程序或者BASIC解释程序是无意义的。
13.Both compilers and interpreters generate machine-level instructions, but the process is different.编译程序和解释程序两者都产生机器指令,但过程是不同的。
14.Compilers and interpreters are a necessary part of any computer system.编译程序和解释程序是任何计算机系统的一个必要组成部分。
15.The interpreter converts your source program into object code as it is needed.根据需要,解释程序能将你所编写的源程序转换为结果代码。
16.Can you explain to me the application process?可否解释一下申请程序?
17.A Theory of Understanding Process: Manuscript of Ricoeur s Thought on Hermeneutics;理解程序论:利科解释学思想研究论稿
18.a program that recognizes and explains faults in the equipment or mistakes in a computer program.认可和解释计算机程序或设备错误的程序。
相关短句/例句

explanation program解释程序
1.The object to be monitored is discussed briefly,the philosophy and structure of expert system for fractionating tower monitoring are investigated and analysed,the construction of knowledge base is expounded in detail,inference engine and explanation program are introduced too.简述了监控对象,研究和分析了监控专家系统的思想和结构,重点阐述了分馏塔监控系统的核心之一知识库的构建,给出了专家系统开发工具CLIPS的推理机,简介了解释程序的作用过程。
3)intepreter解释程序器
4)pure interpreter纯解释程序
5)interpretation package解释程序包
6)interpretative subroutine解释子程序
延伸阅读

解释程序  按照源程序的指令或语句的动态执行顺序,逐条或逐句翻译并立即执行的翻译程序。解释程序的特点是把源程序直接翻译成加工输入数据,产生所求的动作,而不是产生目标语言形式的目标程序。      结构和工作过程  解释程序由一个总控程序和若干个执行子程序组成(见图)。解释程序的工作过程如下:首先,由总控程序执行初始准备工作,置工作初态;然后,从源程序中取一个语句S,并进行语法检查。如果语法有错,则输出错误信息;否则,根据所确定的语句类型转去执行相应的执行子程序。返回后检查解释工作是否完成,如果未完成,则继续解释下一语句;否则,进行必要的善后处理工作。    适用范围 解释程序的突出优点是可简单地实现,且易于在解释执行过程中灵活、方便地插入修改和调试措施,但最大缺点是执行效率很低。例如,需要多次重复执行的语句,采用编译程序时只需要翻译一次;但在解释程序中却需要重复翻译,重复执行。根据这些特点,解释程序适用于如下场合:①有些语言中的大多数语句,如字符串加工语言中的字符串查找语句和加工语句,其执行时间比翻译时间长得多。对于这种语言,采用生成性方案,效果甚微,而采用解释性方案则易于实现。②为了便于用户调试和修改程序,又能保证程序高效运行,很多程序设计语言配置两个加工系统,一个用于调试,一个用于有效地运行。调试用的系统一般用解释程序实现,以便及时监视运行情况、动态地输出调试信息和灵活地修改错误。③交互式会话语言(如BASIC,APL),要为用户提供并行、交错编写、执行、调试和修改源程序的功能。采用解释程序易于实现这些功能。    随着超大规模集成电路的迅速发展,不少人提出用微程序设计方法实现高级程序设计语言解释程序的想法,随之出现了如 "FORTRAN机"之类的高级语言机器的概念。