中英
compilers
  • 简明
  • 柯林斯
  • n.编译器;编译程式;编译工具(compiler 的复数形式)
  • 网络释义
  • 专业释义
  • 英英释义
  • 1

     编译器

    C# 有5个著名的编译器compilers):

  • 2

     编译工具

    ©2013 BaiduPE工具 编译工具(Compilers),软件破解...

短语
查看更多
  • 双语例句
  • 权威例句
  • 1
    Use debugging compilers.
    使用调试编译器。
  • 2
    Other compilers may name things differently.
    其他编译器可能有不同的命名方式。
  • 3
    Not all JIT compilers generate the code as above.
    不是所有的 JIT 编译器都生成如上代码。
查看更多
  • 词典短语
  • 百科
  • Compilers

    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.

查看更多