up vote 23 down vote favorite
3
share [g+] share [fb]

Hello everybody I am reading at the time the "Effective C++" written by Meyers and came across the term "translation unit".

Could somebody please give me an explanation of:

1) What exactly it is

2) When should I consider using it when programming with C++

3) If it is related only to C++, or it can be used with other programming languages

I might already use it without knowing the term....

link|improve this question

1  
Mark an answer as correct if you're satisfied. – GMan Jul 9 '09 at 20:17
feedback

9 Answers

up vote 35 down vote accepted

From here:

According to standard C++: A translation unit is the basic unit of compilation in C++. It consists of the contents of a single source file, plus the contents of any header files directly or indirectly included by it, minus those lines that were ignored using conditional preprocessing statements.

A single translation unit can be compiled into an object file, library, or executable program.

The notion of a translation unit is most often mentioned in the contexts of the One Definition Rule, and templates.

link|improve this answer
A great point! I edited my quote to include the hotlink on the "here" page. That link leads to a wiki page about ISO/IEC 14882 and in the External Links section of that page, there is a link to ISO/IEC 14882 on iso.org – JeffH Jul 9 '09 at 21:14
Whoops! The comment that "A great point!" refers to was deleted. – JeffH Jul 9 '09 at 21:15
Probably all the comments here, including this one, should be deleted :-) – anon Jul 9 '09 at 21:33
@Neil, yes i think that's a good idea :D – Johannes Schaub - litb Jul 9 '09 at 23:30
feedback

A translation unit is for all intents and purposes a file (.c/.cpp), after it's finished including all of the header files.

http://msdn.microsoft.com/en-us/library/bxss3ska%28VS.80%29.aspx

link|improve this answer
Got me by 24 seconds :-) – Ed S. Jul 9 '09 at 20:04
Not .h files. Header files are not compiled. – GMan Jul 9 '09 at 20:04
3  
Including header files. Header files are processed by the compiler, even if no code is generated. See also JeffH's preprocessor comment, the definition "everything the compiler sees" is a good one. – Marco van de Voort Jul 9 '09 at 20:08
Header files are included into .cpp files, but .h themselves are not compiled. – GMan Jul 9 '09 at 20:16
3  
You can compile files ending in ".h" just fine. The file-name isn't important at all. The content is. If the content of "foo.h" is "int main() { }" you can compile it. – Johannes Schaub - litb Jul 9 '09 at 21:11
feedback

A hard question to answer definitively. The C++ standard states:

The text of the program is kept in units called source files in this International Standard. A source file together with all the headers (17.4.1.2) and source files included (16.2) via the preprocessing directive #include, less any source lines skipped by any of the conditional inclusion (16.1) preprocessing direc- tives, is called a translation unit. [Note: a C++ program need not all be translated at the same time. ]

So for most intents and purposes a translation unit is a single C++ source file and the header or other files it includes via the preprocessor #include mechanism.

Regarding your other questions:

2) When should I consider using it when programming with C++

You can't not consider it - translation units are the basis of a C++ program.

3) If it is related only to C++, or it can be used with other programming languages

Other languages have similar concepts, but their semantics will be subtly different. Most other languages don't use a preprocessor, for example.

link|improve this answer
So to clarify, headers are not compiled but their contents can be included into a translation unit upon which it will effectively be compiled. – GMan Jul 9 '09 at 21:00
I don't know if that clarifies or not. This can be a somewhat murky area - it's not clear from the standard para I quoted from that pre-compiled headers are allowed, for example. – anon Jul 9 '09 at 21:10
@GMan, and that's where you have to be very careful about the one definition rule. If you include a class in different translation units with slightly different defines before that class is included that cause the class to have different code it will cause undefined problems. – Matt Price Jul 9 '09 at 21:19
@GMan note the two terms used by the Standard: "header" and "source file". "header" is only used for the Standard library. A user file that's included by some code is not called "header" by the Standard, but "source file". The Standard doesn't know about the difference between ".h" and ".cpp" that we poor c++ programmers made up :) – Johannes Schaub - litb Jul 9 '09 at 21:43
feedback

The book makes it clear enough. When Meyers referes to a "translation Unit", he means a source code file.

link|improve this answer
yes u r right :) .... i missed that paragraph.... thanks everybody.. – Harry Jul 9 '09 at 20:08
feedback

In addition to the ODR, the translation unit is important in the definition of unnamed namespaces, which replaces one of the old uses of "static".

I guess I still don't have enough points to add a comment under the top answer.

link|improve this answer
That's OK...this doesn't make for too bad an answer on its own. :) – cHao Nov 11 '11 at 2:24
feedback

A translation unit is code that is passed to the compiler proper. This typically means the output from running the preprocessor on the .c file.

link|improve this answer
feedback

Every cpp/c (implementation) file will be converted into a translation unit (ie.,object file (.obj)) headers in the cpp file will be replaced with the actual text from the header files.

link|improve this answer
feedback

As others have said, a translation unit is basically the contents of a source file after preprocessing. It's the topmost production in the language grammar; you would only need to worry about it if you were writing a C or C++ compiler.

link|improve this answer
feedback

According to MSDN: C and C++ programs consist of one or more source files, each of which contains some of the text of the program. A source file, together with its include files (files that are included using the #include preprocessor directive) but not including sections of code removed by conditional-compilation directives such as #if, is called a "translation unit."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.