頭文件
防止頭文件重復(fù)包含
將頭文件包含在
#ifndef xxxx
#define xxxx
.....
#endif
這里的xxxx通常是\_文件名大寫\_,不要重復(fù)使用這個宏定義。
兼容性
32位和64位兼容
不要使用long,使用long long。
將頭文件包含在
#ifndef xxxx
#define xxxx
.....
#endif
這里的xxxx通常是\_文件名大寫\_,不要重復(fù)使用這個宏定義。
不要使用long,使用long long。