中英
compile
/ kəmˈpaɪl /
/ kəmˈpaɪl /
  • 简明
  • 柯林斯
  • v.汇编,编纂;编译(电脑程式);收集,搜集(信息,资料);累积(得分)
  • CET6/考研/IELTS/TOEFL/GRE/GMAT/商务英语/
    • 第三人称单数

      compiles
    • 现在分词

      compiling
    • 过去式

      compiled
    • 过去分词

      compiled
  • 网络释义
  • 专业释义
  • 英英释义
  • 1

     编译

    ...(可以统一编译-汇编过程)汇编器:arm-linux-as链接器:arm-linux-ld嵌入式应用的生成特点嵌入式应用的生成特点编译(Compile)编译(Compile)编译(Compile)是指从高级语言转换成汇编语言的过程。

  • 2

     编辑

    来源(Origin): CCTV致富经 作者: - 编辑(Compile): - 按照《适之宝枕头记》的好枕头三要素 新生儿也可以用枕头,宝宝专用枕头最薄部分1CM以下新生儿使用无妨!

  • 3

    [图情] 汇编

    ... Hardware(计算机硬件) Compile(汇编,编辑) Buffer(缓冲器): ...

  • 4

     编制

    ... compensation n.补偿(或赔偿)的款物;补偿,赔偿 compile vt.编辑,编制,搜集 complement n.补足物,船上的定员;补语 vt.补充,补足 ...

短语
查看更多
  • 双语例句
  • 原声例句
  • 权威例句
  • 1
    The book took 10 years to compile.
    这本书花了10年编写。
    《柯林斯英汉双解大词典》
  • 2
    We are trying to compile a list of suitable people for the job.
    我们在努力编制一份适合做这项工作的人员名单。
    《牛津词典》
  • 3
    They also compile flight reports.
    他们还编写飞行报告。
查看更多
  • 词典短语
  • 同近义词
  • 同根词
  • 词源
  • 百科
  • Compile

    A compiler is a computer program (or set of programs) that transforms source code written in a programming language (the source language) into another computer language (the target language, often having a binary form known as object code). The most common reason for converting a source code is to create an executable program.The name "compiler" is primarily used for programs that translate source code from a high-level programming language to a lower level language (e.g., assembly language or machine code). If the compiled program can run on a computer whose CPU or operating system is different from the one on which the compiler runs, the compiler is known as a cross-compiler. More generally, compilers are a specific type of translators.A program that translates from a low level language to a higher level one is a decompiler. A program that translates between high-level languages is usually called a source-to-source compiler or transpiler. A language rewriter is usually a program that translates the form of expressions without a change of language. The term compiler-compiler is sometimes used to refer to a parser generator, a tool often used to help create the lexer and parser.A compiler is likely to perform many or all of the following operations: lexical analysis, preprocessing, parsing, semantic analysis (Syntax-directed translation), code generation, and code optimization. Program faults caused by incorrect compiler behavior can be very difficult to track down and work around; therefore, compiler implementors invest significant effort to ensure compiler correctness.

查看更多