2018 -0516 STM32

1. 在某个头文件love.h中有:

    #ifndef _xx_x

    #define _xx_x

    ..........

    #endif

这种是为了避免多次编译一个文件,比如当两个文件同时#include"love.h",就只会编译遇到的第一次,下一次遇到的就会跳过。

猜你喜欢

转载自blog.csdn.net/qq_36324796/article/details/80342365