Зміст курсу
Вступ до C++
Вступ до C++
Директиви Препроцесора
Щоб додати зовнішні файли до вашої програми, ви повинні використовувати директиви препроцесора. Це команди, які керують препроцесором, інструментом, що трансформує код перед компіляцією. Синтаксис для більшості директив препроцесора такий:
directive
#directive parameters
Примітка
Стандартні файли приєднуються за допомогою кутових дужок
< >
, але ви також можете створити власні файли і підключити їх до вашого проекту аналогічно, використовуючи подвійні лапки" "
.
include
#include <name>
How #include works
Look at the code below and try to run it.
How #include works
Look at the code below and try to run it.
main
int main() { return 0;
You get an error of a missing }
. This is done on purpose to show how the #include
works. We can create a separate file containing only the }
symbol and include it in the main.cpp file using the #include
directive.
main
header
int main() { #include <header.h>
The issue has been resolved, and you should no longer encounter an error. The reason for this resolution lies in the nature of the #include
directive, which essentially just copies and pastes the content of a file at the point where it is called.
Дякуємо за ваш відгук!