中英
compiler
/ kəmˈpaɪlə(r) /
/ kəmˈpaɪlər /
  • 简明
  • 柯林斯
  • n.编译器;[计] 编译程序;编辑者,汇编者
    • 复数

      compilers
  • 网络释义
  • 专业释义
  • 英英释义
短语
  • 1
    cross compiler

    交叉编译器 ; 交叉编译程序 ; 跨平台编译 ; 交叉编译

  • 2
    compiler language

    编译程序语言 ; 编译器语言 ; 编译过的程序 ; 编辑者语言

  • 3
    compiler generator

    编译程序的生成程序 ; 编译程序的生成器 ; 编译程序用编制程序

查看更多
  • 双语例句
  • 原声例句
  • 权威例句
  • 1
    This is a very basic compiler.
    这是一个非常简单的编译器。
  • 2
    That's fine for the compiler.
    这对编译器来说是很好的。
  • 3
    Compiler and runtime impact.
    编译器和运行时影响。
查看更多
  • 词典短语
  • 同近义词
  • 同根词
  • 词源
  • 百科
  • Compiler

    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.

查看更多