当前位置:首页 > 英文周记 > 正文内容

compilers「Compilers Configurations翻译」

更新时间:2026-07-18 10:27:59 周记网3年前 (2023-04-07)英文周记101

英语编译程序怎么翻译?

编译程序

英文翻译如下

compilers「Compilers Configurations翻译」

Compiler

例句

C语言简洁的语法对专业编程人员很有吸引力,而且它的编译程序能够产生高效的目标代码。

The terse syntax is attractive to professional programmer, and the compilers generate very deficient object code.

同时也分析了编译程序技术对Java性能的影响。

The authors also ****yze the effect that compiler technology has on Java performance.

compiler是什么意思?

compiler[英][kəmˈpaɪlə(r)][美][kəmˈpaɪlɚ]n.汇编者; 编辑者; 编纂者; (电脑的)编译程序; 复数:compilers 双语例句 You need to make these available to the compiler by adding it to the module definition for the application.您必须将它添加到应用程序的模型定义中,让编译器可以使用它。

build、make、compile的区别

我们先来看看Stack Overflow的compileSdkVersion和buildToolsVersion解释:

compileSdkVersion is the API version of Android that you compile against.

buildToolsVersion is the version of the compilers (aapt, dx, renderscript compiler, etc...) that you want to use. For each API level (starting with 18), there is a matching .0.0 version.

At IO 2014, we release API 20 and build-tools 20.0.0 to go with it.

Between Android releases we will release updates of the compilers, and so we'll release version .0.1, .0.2, etc... Because we don't want to silently update these version under you, it's up to you to move to the new version when it's convenient for you.

You can use a higher version of the build-tools than your compileSdkVersion, in order to pick up new/better compiler while not changing what you build your app against.

这里大概意思compileSdkVersion是编译时api版本,buildToolsVersion是执行编译的组件工具版本。你可以用高版本的编译组件来执行低sdk版本的程序。

接着,看 解答java的build、make、compile三种的区别:

compile:编译成机器能明白的指令。

build:一般包含了compile的操作,并且会生成对应的可执行文件。

make:编译选定的目标,但是Make只编译上次编译变化过的文件,减少重复劳动,节省时间

compilers 和interpreters的区别

compilers -- 编译器。

interpreters -- 解释器。

compilers -- 输入源程序,编译器把它变成机器可认识并可直接执行的文件。

例如:C 编译器, fortran 编译器.

可执行文件(目标程序是机器码)是二进制,人眼读不出来。执行速度快。

interpreters -- 读入源程序,边解释,机器边执行。

例如:网页浏览器,读入HTML,javascript,边读边解释,边执行并显示结果。

源程序就是“执行文件”,执行速度慢。

标签: compilers

“compilers「Compilers Configurations翻译」” 的相关文章

compilers「compilers autodetection」

compilers「compilers autodetection」

编译原理 编译原理是计算机专业的一门重要专业课,旨在介绍编译程序构造的一般原理和基本方法。内容包括语言和文法、词法分析、语法分析、语法制导翻译、中间代码生成、存储管理、代码优化和目标代码生成。 编译原...

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。