Source file inclusion - cppreference.com
De cppreference.com
<metanoindex/>
Inclui arquivo de outra fonte em arquivo de fonte de corrente na linha imediatamente após a diretiva.
Original:
Includes other source file into current source file at the line immediately after the directive .
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Sintaxe
#include <filename>
|
(1) | ||||||||
#include "filename"
|
(2) | ||||||||
Explicação
Inclui arquivo de origem, identificada por filename no arquivo fonte de corrente na linha imediatamente após a diretiva.
Original:
Includes source file, identified by filename into the current source file at the line immediately after the directive.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
A primeira versão da directiva procura apenas diretórios padrão de inclusão. O padrão C + +, biblioteca, bem como padrão a biblioteca C, está implicitamente incluído no padrão incluem diretórios. A norma inclui diretórios pode ser controlado pelo usuário através de opções do compilador.
Original:
The first version of the directive searches only standard include directories. The standard C++ library, as well as standard C library, is implicitly included in standard include directories. The standard include directories can be controlled by the user through compiler options.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
A segunda versão, em primeiro lugar, procura o diretório onde o arquivo atual reside e, somente se o arquivo não for encontrado, procura o padrão incluem diretórios.
Original:
The second version firstly searches the directory where the current file resides and, only if the file is not found, searches the standard include directories.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
No caso, o arquivo não for encontrado, o programa é mal-formado.
Original:
In the case the file is not found, program is ill-formed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.