1. 程式人生 > >C/C++中常出現的#ifndef,#define,#endif解析

C/C++中常出現的#ifndef,#define,#endif解析

--------------------------------------------------------------------------------------------------
#ifndef GRAPHICS_H // 防止graphics.h被重複引用 
#define GRAPHICS_H 


#include <math.h> // 引用標準庫的標頭檔案 
… 
#include “header.h” // 引用非標準庫的標頭檔案 
… 
void Function1(…); // 全域性函式宣告 
… 
class Box // 類結構宣告 

… 
}; 
#endif
--------------------------------------------------------------------------------------------------