Compiled language


A compiled language is a programming language whose implementations are typically compilers, and not interpreters.
The term is somewhat vague. In principle, any language can be implemented with a compiler or with an interpreter. A combination of both solutions is also common: a compiler can translate the source code into some intermediate form, which is then passed to an interpreter which executes it.

Advantages v. disadvantages

Programs compiled into native code at compile time tend to be faster than those translated at run time, due to the overhead of the translation process. Newer technologies such as just-in-time compilation, and general improvements in the translation process are starting to narrow this gap, though. Mixed solutions using bytecode tend toward intermediate efficiency.
Low-level programming languages are typically compiled, especially when efficiency is the main concern, rather than cross-platform support. For such languages, there are more one-to-one correspondences between the programmed code and the hardware operations performed by machine code, making it easier for programmers to control the use of central processing unit and memory in fine detail.
With some effort, it is always possible to write compilers even for traditionally interpreted languages. For example, Common lisp can be compiled to Java bytecode, C code, or directly to native code. Programming languages that support multiple compiling targets give more control to developers to choose either execution speed or cross-platform compatibility.

Languages

Some languages that are commonly considered to be compiled: