1. 程式人生 > >#ifndef/#define/#endif使用詳解

#ifndef/#define/#endif使用詳解

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

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

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