Why are #ifndef and #define used in C++ header files?
I have been seeing code like this usually in the start of header files:
#ifndef HEADERFIL开发者_运维百科E_H
#define HEADERFILE_H
And at the end of the file is
#endif
What is the purpose of this?
Those are called #include guards.
Once the header is included, it checks if a unique value (in this case HEADERFILE_H
) is defined. Then if it's not defined, it defines it and continues to the rest of the page.
When the code is included again, the first ifndef
fails, resulting in a blank file.
That prevents double declaration of any identifiers such as types, enums and static variables.
#ifndef <token>
/* code */
#else
/* code to include if the token is defined */
#endif
#ifndef
checks whether the given token has been #defined
earlier in the file or in an included file; if not, it includes the code between it and the closing #else
or, if no #else
is present, #endif
statement. #ifndef
is often used to make header files idempotent by defining a token once the file has been included and checking that the token was not set at the top of that file.
#ifndef _INCL_GUARD
#define _INCL_GUARD
#endif
This prevent from the multiple inclusion of same header file multiple time.
#ifndef __COMMON_H__
#define __COMMON_H__
//header file content
#endif
Suppose you have included this header file in multiple files. So first time __COMMON_H__ is not defined, it will get defined and header file included.
Next time __COMMON_H__ is defined, so it will not include again.
They are called ifdef or include guards.
If writing a small program it might seems that it is not needed, but as the project grows you could intentionally or unintentionally include one file many times, which can result in compilation warning like variable already declared.
#ifndef checks whether HEADERFILE_H is not declared.
#define will declare HEADERFILE_H once #ifndef generates true.
#endif is to know the scope of #ifndef i.e end of #ifndef
If it is not declared which means #ifndef generates true then only the part between #ifndef and #endif executed otherwise not. This will prevent from again declaring the identifiers, enums, structure, etc...
#ifndef checks whether the given token has been #defined earlier in the file or in an included file; if not, it includes the code between it and the closing #else or, if no #else is present, #endif statement. #ifndef is often used to make header files idempotent by defining a token once the file has been included and checking that the token was not set at the top of that file.
#ifndef ABOUTSCREEN_H
#define ABOUTSCREEN_H
#include <fcntl.h>
#include <unistd.h>
#define CHARGING_STATUS_FILE "/cable.2/state"
#define LED_ON "255"
#define LED_OFF "0"
namespace Ui
{
class aboutScreen;
}
class aboutScreen : public QWidget
{
Q_OBJECT
public:
enum LedColors
{
OFF,
RED,
BLUE,
GREEN,
WHITE
};
explicit aboutScreen(QWidget *parent = 0, Ui::mainStackWidget *uiMainStackWidget = 0);
~aboutScreen();
void init(void);
void writeLedStatus(QString, QString);
public slots:
void updateBatteryAndStorageStatus(void);
private slots:
void on_backButton_pressed();
void on_backButton_released();
private:
Ui::mainStackWidget *uiMainStackWidget;
};
#endif // ABOUTSCREEN_H
精彩评论