Language - Compilation (Compile Time)

Compiler

Language - Compilation (Compile Time)

About

Compile time or compilation is a step of a compiler that transforms a source code into instruction byte understood by the running engine.

If the running engine target is:

  • the CPU (ie native), the byte is the CPU instruction that a CPU can run directly
  • a third running engine, the byte is called the byte code. Example Java bytecode that the Java Virtual Machine can execute.





Discover More
Card Puncher Data Processing
Data Type - (TypeSafe|Type Safety|Type Error)

type safety means that the operations perform on a variable with a certain type are controlled at compile time. They are then safe at runtime (when the code runs). Errors would not show up when the code...
Card Puncher Data Processing
Language - (Variable) Constant

Constants are values that are fixed at compile time. They are variables that centralize value setting (configuration). A variable with a value that does not change throughout the program. If you tried...
Card Puncher Data Processing
Language - Script

A script is the text file that contains code (generally from a scripting language). It: is executed directly by via the interpreter without compile phase or the compile step is transparent ...



Share this page:
Follow us:
Task Runner