Sanakirja
Tekoälykääntäjä

Synonyymit

Ääntäminen

  • ÄäntäminenSouthern England
  • UK:
    • IPA: /kəmˈpaɪlə/
  • US:
    • IPA: /kəmˈpaɪlɚ/

Lyhenteet

KieliKäännökset
espanjacompilador
esperantotradukilo
italiacompilatore, compilatrice, accoglitore, redattore, redattrice
japaniコンパイラ (konpaira / kompaira)
kreikkaμεταγλωττιστής (metaglottistís), συντάκτης (syntáktis), συντάκτρια (syntáktria)
latinacompīlātor
portugalicompilador
puolakompilator
ranskacompilateur, compilatrice, transcodeur
ruotsikompilator
saksaÜbersetzer, Kompiler, Compiler, Kompilator
suomikokoaja, kääntäjä, laatija, käännin
turkkiderleyici
tšekkipřekladač, kompilátor
unkarifordító, fordítóprogram
venäjäкомпиля́тор (kompiljátor), составитель (sostavitel)
virokompilaator

Määritelmät

Substantiivi

  1. One who compiles.
  2. (software) A computer program that transforms source code into object code.

Esimerkit

  • a compiler of poetry anthologies
  • my favourite crossword compiler

Taivutusmuodot

Monikkocompilers

(software) A computer program that transforms source code into object code.

A diagram of the operation of a typical multi-language, multi-target compiler

(software) A computer program that transforms source code into object code.

Compiler design

(software) A computer program that transforms source code into object code.

Lexer and parser example for C. Starting from the sequence of characters "if(net>0.0)total+=net*(1.0+tax/100.0);", the scanner composes a sequence of tokens, and categorizes each of them, for example as identifier, reserved word, number literal, or operator. The latter sequence is transformed by the parser into a syntax tree, which is then treated by the remaining compiler phases. The scanner and parser handles the regular and properly context-free parts of the grammar for C, respectively.