対訳 ヘッダー ファイル
出典:Wiktionary
header file (複数形 header files)
出典:Wikipedia
出典:『Wikipedia』 (2011/05/16 22:49 UTC 版)
Some programming languages (most notably C, C++, and Objective-C) use header files. These files allow programmers to separate certain elements of a program's source code into reusable files. Header files commonly contain forward declarations of classes, subroutines, variables, and other identifiers. Programmers who wish to declare standardized identifiers in more than one source file can place such identifiers in a single header file, which other code can then include whenever the header contents are required. This is to keep the interface in the header separate from the implementation. The C standard library and C++ standard library traditionally declare their standard functions in header files.