unterminated conditional directive 说明何时出现 说明 只要提示这个,就是缺少 #endif 何时出现 1. 类似 #ifnde *** 没下文了 (即没有 #endif) 2. 头文件自包含 //test.h #ifndef TEST_H_ #define TEST_H_ --- #include "test.h" --- #endif // TEST_H_