分类: C/C++
2008-04-19 13:48:59
为了避免同一个文件被include多次 #ifndef __SOMEFILE_H__ 方式二: #pragma once
一般可以这样处理: #infndef XX
#define XX
#if _MSC_VER > 1000
#pragma once
#endif
.
.
#endif
注意: _MSC_VER 是出于版本兼容性考虑,定义
Defines the compiler version. Defined as 1200 for Microsoft Visual C++ 6.0. Always defined. |